diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-28 17:58:10 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-28 17:58:10 +0200 |
commit | 1a8b2ce466c91877d03876a9e21bf95d24cb8762 (patch) | |
tree | 121255336373a8dfa0f42b29c20e265c22fb90ad | |
parent | 3efda3a650ef0e3067eb1de9e2ceaaacfea06e25 (diff) |
DB/Spells: Fix warrior talent "Deep Wounds"
-rw-r--r-- | sql/updates/world/2013_07_28_03_world_spell_proc_event_434.sql | 2 | ||||
-rw-r--r-- | src/server/scripts/Spells/spell_warrior.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sql/updates/world/2013_07_28_03_world_spell_proc_event_434.sql b/sql/updates/world/2013_07_28_03_world_spell_proc_event_434.sql index 0f9e069dc7a..c3616ce5622 100644 --- a/sql/updates/world/2013_07_28_03_world_spell_proc_event_434.sql +++ b/sql/updates/world/2013_07_28_03_world_spell_proc_event_434.sql @@ -1,4 +1,4 @@ -DELETE FROM `spell_proc_event` WHERE `entry`=50685; +DELETE FROM `spell_proc_event` WHERE `entry`=-50685; INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES (-50685, 0, 0, 0, 0, 0, 0, 0x2, 0, 0, 0); diff --git a/src/server/scripts/Spells/spell_warrior.cpp b/src/server/scripts/Spells/spell_warrior.cpp index cfa77a65b8c..310527d8fe9 100644 --- a/src/server/scripts/Spells/spell_warrior.cpp +++ b/src/server/scripts/Spells/spell_warrior.cpp @@ -214,8 +214,7 @@ class spell_warr_concussion_blow : public SpellScriptLoader } }; -/// Updated 4.3.4 -// 12162 - Deep Wounds +// -12162 - Deep Wounds class spell_warr_deep_wounds : public SpellScriptLoader { public: @@ -229,7 +228,8 @@ class spell_warr_deep_wounds : public SpellScriptLoader { if (!sSpellMgr->GetSpellInfo(SPELL_WARRIOR_DEEP_WOUNDS_RANK_1) || !sSpellMgr->GetSpellInfo(SPELL_WARRIOR_DEEP_WOUNDS_RANK_2) || - !sSpellMgr->GetSpellInfo(SPELL_WARRIOR_DEEP_WOUNDS_RANK_3)) + !sSpellMgr->GetSpellInfo(SPELL_WARRIOR_DEEP_WOUNDS_RANK_3) || + !sSpellMgr->GetSpellInfo(SPELL_WARRIOR_DEEP_WOUNDS_RANK_PERIODIC)) return false; return true; } |