diff options
-rw-r--r-- | sql/updates/world/2011_11_07_02_world_misc.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2011_11_07_03_world_misc.sql | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sql/updates/world/2011_11_07_02_world_misc.sql b/sql/updates/world/2011_11_07_02_world_misc.sql index b4750688aa1..b40ad4dc7bf 100644 --- a/sql/updates/world/2011_11_07_02_world_misc.sql +++ b/sql/updates/world/2011_11_07_02_world_misc.sql @@ -1,6 +1,6 @@ -- by Aok -- Removes save to instance flag from Hellfire Channeler -UPDATE `creature_template` SET `flags_extra`=`flags_extra` &~ 0 WHERE `entry`=17256; +UPDATE `creature_template` SET `flags_extra`=`flags_extra` &~ 1 WHERE `entry`=17256; -- by Nay DELETE FROM `spell_dbc` WHERE `Id` IN (12507,31982,33134); diff --git a/sql/updates/world/2011_11_07_03_world_misc.sql b/sql/updates/world/2011_11_07_03_world_misc.sql new file mode 100644 index 00000000000..97b538237bd --- /dev/null +++ b/sql/updates/world/2011_11_07_03_world_misc.sql @@ -0,0 +1,6 @@ +DELETE FROM `creature_loot_template` WHERE `entry`=11671; -- Core Hounds +UPDATE `creature_template` SET `lootid`=0 WHERE `entry`=11671; + +-- fixing previous sql (2011_11_07_02_world_misc.sql) +-- Removes save to instance flag from Hellfire Channeler +UPDATE `creature_template` SET `flags_extra`=`flags_extra` &~ 1 WHERE `entry`=17256;
\ No newline at end of file |