diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 67b4e9491..030f1b0b4 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -7977,7 +7977,8 @@ namespace Game.Spells if ((effMask & (1 << (int)i)) != 0 && aurApp.HasEffect(i)) effMask &= ~(1u << (int)i); - _spellHitTarget._ApplyAura(aurApp, effMask); + if (effMask != 0) + _spellHitTarget._ApplyAura(aurApp, effMask); } }