aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2011-11-07 17:00:02 +0000
committerNay <dnpd.dd@gmail.com>2011-11-07 17:00:02 +0000
commit980bd0b52822fcf949ee634083bd670ceebc849c (patch)
treed1e879e4cc06ef29c856ee46c95568c7b7eb0554
parent0436a8b532b0bddfc890ba30fb6e791b9e4aa96b (diff)
DB/NPCs: Remove loot from Core Hounds
Closes #3420 (Fix a typo in 2011_11_07_02_world_misc.sql)
-rw-r--r--sql/updates/world/2011_11_07_02_world_misc.sql2
-rw-r--r--sql/updates/world/2011_11_07_03_world_misc.sql6
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