diff options
-rw-r--r-- | src/game/Unit.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 49904c8d7e4..a1c77be2ace 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -11502,6 +11502,10 @@ void Unit::ProcDamageAndSpellFor( bool isVictim, Unit * pTarget, uint32 procFlag if (!i->triggeringAura[j]) continue; + // possible for stacked auras from same caster, skip then + if (parentAura->GetPartAura(j)!=i->triggeringAura[j]->triggeredByAura) + continue; + SpellProcEventEntry const *spellProcEvent = i->triggeringAura[j]->spellProcEvent; AuraEffect *triggeredByAura =triggeredByAura = i->triggeringAura[j]->triggeredByAura; |