From 8e8e67f38ce45f496142cfd7749961902337347d Mon Sep 17 00:00:00 2001 From: offl Date: Wed, 6 Jan 2021 19:49:24 +0200 Subject: [PATCH] DB/Creature: Remove serverside unit flags from creature table Ref 1f4b5c2f5646c6eaae336b54a762868a71cddb67 --- sql/updates/world/3.3.5/2021_01_06_05_world.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 sql/updates/world/3.3.5/2021_01_06_05_world.sql diff --git a/sql/updates/world/3.3.5/2021_01_06_05_world.sql b/sql/updates/world/3.3.5/2021_01_06_05_world.sql new file mode 100644 index 00000000000..2ebf1cbbdae --- /dev/null +++ b/sql/updates/world/3.3.5/2021_01_06_05_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `creature` SET `unit_flags` = `unit_flags` &~ 0x00000008 WHERE `guid` IN (81085,3431); +UPDATE `creature` SET `unit_flags` = `unit_flags` &~ 0x08000000 WHERE `guid` IN (145494,145495);