mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-08 15:58:04 +00:00
fix(Core/Spells) Add Explosive Shot exception (#16854)
* gitpain * Update SpellAuras.cpp
This commit is contained in:
@@ -2187,7 +2187,7 @@ bool Aura::CanStackWith(Aura const* existingAura, bool remove) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
// spell of same spell rank chain
|
// spell of same spell rank chain
|
||||||
if (m_spellInfo->IsRankOf(existingSpellInfo))
|
if (m_spellInfo->IsRankOf(existingSpellInfo) && !(m_spellInfo->SpellFamilyName == SPELLFAMILY_HUNTER && m_spellInfo->SpellFamilyFlags[1] & 0x80000000))
|
||||||
{
|
{
|
||||||
// don't allow passive area auras to stack
|
// don't allow passive area auras to stack
|
||||||
if (m_spellInfo->IsMultiSlotAura() && !IsArea())
|
if (m_spellInfo->IsMultiSlotAura() && !IsArea())
|
||||||
|
|||||||
Reference in New Issue
Block a user