diff options
author | Kandera <KanderaDev@gmail.com> | 2012-05-18 14:08:05 -0400 |
---|---|---|
committer | Kandera <KanderaDev@gmail.com> | 2012-05-18 14:08:05 -0400 |
commit | 7e62c34b247d886d89aea8bd5e8e9241d8cefa44 (patch) | |
tree | 7ca3fb395138f5bd1a2257e4e3f97e300b6d8df7 | |
parent | d1e0dc3fe0c95f78ef261d19c956faf8d3f70a35 (diff) |
DB/Misc: use correct nextquestid for quests 936,3784,3762 Closes #3820. fix blood presence to NOT proc on positive spells (causes issues with healing spells making you heal) Closes #6009. fix dk t10 4peice bonus Closes #6449.
-rw-r--r-- | sql/updates/world/2012_05_18_01_world_misc.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2012_05_18_01_world_misc.sql b/sql/updates/world/2012_05_18_01_world_misc.sql new file mode 100644 index 00000000000..bded6fae447 --- /dev/null +++ b/sql/updates/world/2012_05_18_01_world_misc.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_proc_event` WHERE `entry` = 70656; + +UPDATE `quest_template` SET `NextQuestId` = 3761 WHERE `id` IN (936,3784,3762); + +DELETE FROM `spell_proc_event` WHERE `entry` = 63611; +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(63611,0,0,0,0,0,51154,0,0,0,0); |