mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
Core/Spells: mark Arcane Missiles aura as negative. Was downranking the spell when targetting low level mobs due to effect 1 flagged as possitive.
Closes #12152
This commit is contained in:
@@ -2788,6 +2788,9 @@ bool SpellInfo::_IsPositiveEffect(uint8 effIndex, bool deep) const
|
||||
// Impact
|
||||
if (SpellIconID == 45)
|
||||
return true;
|
||||
// Arcane Missiles
|
||||
if (SpellFamilyFlags[0] == 0x00000800)
|
||||
return false;
|
||||
break;
|
||||
case SPELLFAMILY_PRIEST:
|
||||
switch (Id)
|
||||
|
||||
Reference in New Issue
Block a user