aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2013-07-28 17:58:10 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2013-07-28 17:58:10 +0200
commit1a8b2ce466c91877d03876a9e21bf95d24cb8762 (patch)
tree121255336373a8dfa0f42b29c20e265c22fb90ad /src
parent3efda3a650ef0e3067eb1de9e2ceaaacfea06e25 (diff)
DB/Spells: Fix warrior talent "Deep Wounds"
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_warrior.cpp6
1 files changed, 3 insertions, 3 deletions
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;
}