mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Core/Spell: Retaliation no longer does anything while the warrior is stunned.
Closes #11481
This commit is contained in:
@@ -5673,7 +5673,7 @@ bool Unit::HandleDummyAuraProc(Unit* victim, uint32 damage, AuraEffect* triggere
|
||||
if (dummySpell->SpellFamilyFlags[1] & 0x8)
|
||||
{
|
||||
// check attack comes not from behind
|
||||
if (!HasInArc(M_PI, victim))
|
||||
if (!HasInArc(M_PI, victim) || HasUnitState(UNIT_STATE_STUNNED))
|
||||
return false;
|
||||
|
||||
triggered_spell_id = 22858;
|
||||
|
||||
Reference in New Issue
Block a user