From 814a8695d5d7f436f02784b1f5b4bbe0ec46854f Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Wed, 21 Sep 2022 18:59:16 +0200 Subject: [PATCH] fix(DB/Creatures): Arathi Basin Rare Critters: (#12882) The critters should not be attackable. Lady and Cleo should spawn under Alliance control. Spike and Underfoot should spawn under Horde control. Fixes #11995 --- .../sql/updates/pending_db_world/rev_1661690424898681400.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1661690424898681400.sql diff --git a/data/sql/updates/pending_db_world/rev_1661690424898681400.sql b/data/sql/updates/pending_db_world/rev_1661690424898681400.sql new file mode 100644 index 000000000..dafdf96cc --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1661690424898681400.sql @@ -0,0 +1,5 @@ +-- +UPDATE `creature` SET `phaseMask`=16 WHERE `guid` IN (246011,246009); +UPDATE `creature` SET `phaseMask`=8 WHERE `guid` IN (246036,246098); + +UPDATE `creature_template` SET `unit_flags`=`unit_flags`|770 WHERE `entry` IN (15072,15065,15066,15071);