From 1c1606a7e4351a02c32174018b146370db546829 Mon Sep 17 00:00:00 2001 From: adame1181 <47040311+adame1181@users.noreply.github.com> Date: Sun, 12 Nov 2023 16:29:46 +0100 Subject: [PATCH] fix(DB/Creature): Change humans emote to sit/sleep in CoS (#17670) * fix(DB/Creature): Humans in CoS are sitting/sleeping down * fix(DB/Gameobject): making beds/chairs unclickable * ready for merge --------- Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com> --- .../fix-humans-emotes-in-culling-of-stratholme.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 data/sql/updates/pending_db_world/fix-humans-emotes-in-culling-of-stratholme.sql diff --git a/data/sql/updates/pending_db_world/fix-humans-emotes-in-culling-of-stratholme.sql b/data/sql/updates/pending_db_world/fix-humans-emotes-in-culling-of-stratholme.sql new file mode 100644 index 000000000..8cf65e2bd --- /dev/null +++ b/data/sql/updates/pending_db_world/fix-humans-emotes-in-culling-of-stratholme.sql @@ -0,0 +1,14 @@ +-- CREATURES SIT: +DELETE FROM `creature_addon` WHERE `guid` IN (1970898,1970880,1970879,1970878,1970894,1970895,1970896,1970927,1970877); +INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(1970898, 0, 0, 5, 0, 0, 0, NULL), +(1970880, 0, 0, 5, 0, 0, 0, NULL), +(1970879, 0, 0, 5, 0, 0, 0, NULL), +(1970878, 0, 0, 5, 0, 0, 0, NULL), +(1970894, 0, 0, 5, 0, 0, 0, NULL), +(1970895, 0, 0, 5, 0, 0, 0, NULL), +(1970896, 0, 0, 5, 0, 0, 0, NULL), + +-- CREATURES SLEEP: +(1970927, 0, 0, 3, 0, 0, 0, NULL), +(1970877, 0, 0, 3, 0, 0, 0, NULL);