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:
ariel-
2016-10-17 04:21:32 -03:00
committed by Aokromes
parent d8f310e2a1
commit 657aea3d5b

View File

@@ -2646,6 +2646,9 @@ bool SpellInfo::_IsPositiveEffect(uint8 effIndex, bool deep) const
// Ignite
if (SpellIconID == 45)
return true;
// Arcane Missiles
if (SpellFamilyFlags[0] == 0x00000800)
return false;
break;
case SPELLFAMILY_PRIEST:
switch (Id)