Core/Spells: Make channeled auras stackable by default with other auras.

This commit is contained in:
QAston
2012-02-16 17:14:02 +01:00
parent ba4d1c36f1
commit 0d5ae5784c

View File

@@ -1840,6 +1840,10 @@ bool Aura::CanStackWith(Aura const* existingAura) const
if (!sameCaster)
{
// Channeled auras can stack if not forbidden by db or aura type
if (existingAura->GetSpellInfo()->IsChanneled())
return true;
if (m_spellInfo->AttributesEx3 & SPELL_ATTR3_STACK_FOR_DIFF_CASTERS)
return true;