DB/NPCs: Remove loot from Core Hounds

Closes #3420
(Fix a typo in 2011_11_07_02_world_misc.sql)
This commit is contained in:
Nay
2011-11-07 17:00:02 +00:00
parent 0436a8b532
commit 980bd0b528
2 changed files with 7 additions and 1 deletions

View File

@@ -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);

View File

@@ -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;