From d98cff1e6838dec616bee27a8c734d2e573cc7a2 Mon Sep 17 00:00:00 2001 From: ApoC Date: Wed, 15 Jul 2009 23:44:28 +0200 Subject: [PATCH] Added comments for better code readability. Signed-off-by: ApoC --- src/game/Spell.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index dc7338e39..dd4f60c6e 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -3670,6 +3670,7 @@ SpellCastResult Spell::CheckCast(bool strict) // Special cases of non existing auras handling if(m_spellInfo->excludeCasterAuraSpell == 61988) { + // Avenging Wrath Marker if(m_caster->HasAura(61987)) return SPELL_FAILED_CASTER_AURASTATE; } @@ -3701,6 +3702,7 @@ SpellCastResult Spell::CheckCast(bool strict) // Special cases of non existing auras handling if (m_spellInfo->excludeTargetAuraSpell == 61988) { + // Avenging Wrath Marker if (target->HasAura(61987)) return SPELL_FAILED_CASTER_AURASTATE;