diff options
author | megamage <none@none> | 2009-08-22 18:34:31 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-22 18:34:31 -0500 |
commit | 3596edde964d81fa7407ee33bdf4bc95e9554b04 (patch) | |
tree | 3f85b60aeec196dc1b63a849cbd89491fd3c5fd3 | |
parent | 61b6abea581940bc77ba133ba1006af9d66451de (diff) |
*Fix quest endless hunger. By BroodWyrm
--HG--
branch : trunk
-rw-r--r-- | sql/FULL/world_spell_full.sql | 3 | ||||
-rw-r--r-- | sql/updates/5300_world_scripts_dk.sql | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index 7661684f454..ac7f92f3a3c 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -1972,6 +1972,9 @@ INSERT INTO `spell_elixir` (`entry`, `mask`) VALUES -- -------- -- Death Knight -- -------- +# endless hunger +UPDATE `creature_template` SET `KillCredit1` = '29519' WHERE `entry` IN ('29519','29520','29565','29566','29567'); + DELETE FROM `spell_script_target` WHERE entry IN (51859, 48743, 52124, 52479, 52576, 53110); INSERT INTO `spell_script_target` (`entry`, `type`, `targetEntry`) VALUES diff --git a/sql/updates/5300_world_scripts_dk.sql b/sql/updates/5300_world_scripts_dk.sql new file mode 100644 index 00000000000..d42cbf416fd --- /dev/null +++ b/sql/updates/5300_world_scripts_dk.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `KillCredit1` = '29519' WHERE `entry` IN ('29519','29520','29565','29566','29567');
\ No newline at end of file |