Core/Spell: Fix warrior Enrage stacking with Wrecking Crew and Imp. Defensive Stance

This commit is contained in:
ariel-
2016-11-13 19:12:36 -03:00
parent b99ca19eea
commit 5aa0228df9

View File

@@ -2008,9 +2008,27 @@ void SpellInfo::_LoadSpellSpecific()
case 8115: // Agility
case 8091: // Armor
return SPELL_SPECIFIC_SCROLL;
default:
break;
}
switch (Id)
{
case 12880: // Enrage (Enrage)
case 14201:
case 14202:
case 14203:
case 14204:
case 57518: // Enrage (Wrecking Crew)
case 57519:
case 57520:
case 57521:
case 57522:
case 57514: // Enrage (Imp. Defensive Stance)
case 57516:
return SPELL_SPECIFIC_WARRIOR_ENRAGE;
default:
break;
}
}
break;