Core/Auras: Allow passive auras from items to stack

(cherry picked from commit 8453d7dae2)
This commit is contained in:
Shauren
2017-02-09 18:53:55 +01:00
committed by roc13x
parent 557f714a10
commit bba87cfeee

View File

@@ -1566,7 +1566,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->IsRankOf(existingSpellInfo))
if (IsPassive() && sameCaster && (m_spellInfo->IsDifferentRankOf(existingSpellInfo) || (m_spellInfo->Id == existingSpellInfo->Id && m_castItemGuid.IsEmpty())))
return false;
for (uint8 i = 0; i < MAX_SPELL_EFFECTS; ++i)