mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/Spells: Make channeled auras stackable by default with other auras.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user