From 0b4a2c6ca6df7a53e46782f7814c29f36747b9d6 Mon Sep 17 00:00:00 2001 From: DDuarte Date: Sat, 6 Sep 2014 00:27:04 +0100 Subject: [PATCH] DB/NPCs: Remove dynamicflags that should not be in the DB Tapped and lootable flags --- sql/updates/world/2014_09_06_00_world_creature_template.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/2014_09_06_00_world_creature_template.sql diff --git a/sql/updates/world/2014_09_06_00_world_creature_template.sql b/sql/updates/world/2014_09_06_00_world_creature_template.sql new file mode 100644 index 00000000000..36bed391dd4 --- /dev/null +++ b/sql/updates/world/2014_09_06_00_world_creature_template.sql @@ -0,0 +1,4 @@ +UPDATE `creature_template` SET `dynamicflags`=`dynamicflags` &~ 1; -- lootable +UPDATE `creature_template` SET `dynamicflags`=`dynamicflags` &~ 4; -- tapped +UPDATE `creature_template` SET `dynamicflags`=`dynamicflags` &~ 8; -- tapped by player +UPDATE `creature_template` SET `dynamicflags`=`dynamicflags` &~ 128; -- tapped by threat list