From bcfe5b4f4fe47caa6254aa41331c18a663fec4dd Mon Sep 17 00:00:00 2001 From: Aokromes Date: Mon, 3 Oct 2016 14:56:48 +0200 Subject: [PATCH] Core/Spells: fixed SPELL_ATTR5_USABLE_WHILE_STUNNED --- src/server/game/Spells/Spell.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index 23fff2e938a..f485c1e7782 100644 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -5733,20 +5733,27 @@ SpellCastResult Spell::CheckCasterAuras() const uint32 unitflag = m_caster->GetUInt32Value(UNIT_FIELD_FLAGS); // Get unit state if (unitflag & UNIT_FLAG_STUNNED) { - // spell is usable while stunned, check if caster has only mechanic stun auras, another stun types must prevent cast spell + // spell is usable while stunned, check if caster has allowed stun auras, another stun types must prevent cast spell if (usableInStun) { + static uint32 const allowedStunMask = + 1 << MECHANIC_STUN + | 1 << MECHANIC_FREEZE + | 1 << MECHANIC_SAPPED + | 1 << MECHANIC_SLEEP; + bool foundNotStun = false; Unit::AuraEffectList const& stunAuras = m_caster->GetAuraEffectsByType(SPELL_AURA_MOD_STUN); for (Unit::AuraEffectList::const_iterator i = stunAuras.begin(); i != stunAuras.end(); ++i) { - if ((*i)->GetSpellInfo()->GetAllEffectsMechanicMask() && !((*i)->GetSpellInfo()->GetAllEffectsMechanicMask() & (1 << MECHANIC_STUN))) + uint32 mechanicMask = (*i)->GetSpellInfo()->GetAllEffectsMechanicMask(); + if (mechanicMask && !(mechanicMask & allowedStunMask)) { foundNotStun = true; break; } } - if (foundNotStun && m_spellInfo->Id != 22812) + if (foundNotStun) prevented_reason = SPELL_FAILED_STUNNED; } else