From 1a8b2ce466c91877d03876a9e21bf95d24cb8762 Mon Sep 17 00:00:00 2001 From: Vincent-Michael Date: Sun, 28 Jul 2013 17:58:10 +0200 Subject: DB/Spells: Fix warrior talent "Deep Wounds" --- src/server/scripts/Spells/spell_warrior.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3