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>
This commit is contained in:
adame1181
2023-11-12 16:29:46 +01:00
committed by GitHub
parent 3d36fd015c
commit 1c1606a7e4

View File

@@ -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);