From 980bd0b52822fcf949ee634083bd670ceebc849c Mon Sep 17 00:00:00 2001 From: Nay Date: Mon, 7 Nov 2011 17:00:02 +0000 Subject: DB/NPCs: Remove loot from Core Hounds Closes #3420 (Fix a typo in 2011_11_07_02_world_misc.sql) --- sql/updates/world/2011_11_07_02_world_misc.sql | 2 +- sql/updates/world/2011_11_07_03_world_misc.sql | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 sql/updates/world/2011_11_07_03_world_misc.sql (limited to 'sql/updates') 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 -- cgit v1.2.3