mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Auras: Prevent infinite stacking of passive auras with the same id from the same caster on the same target
Closes #18475
(cherry picked from commit 8867612058)
This commit is contained in:
@@ -1729,7 +1729,7 @@ bool Aura::CanStackWith(Aura const* existingAura) const
|
||||
bool sameCaster = GetCasterGUID() == existingAura->GetCasterGUID();
|
||||
|
||||
// passive auras don't stack with another rank of the spell cast by same caster
|
||||
if (IsPassive() && sameCaster && m_spellInfo->IsDifferentRankOf(existingSpellInfo))
|
||||
if (IsPassive() && sameCaster && m_spellInfo->IsRankOf(existingSpellInfo))
|
||||
return false;
|
||||
|
||||
for (uint8 i = 0; i < MAX_SPELL_EFFECTS; ++i)
|
||||
|
||||
Reference in New Issue
Block a user