[c12579] Add negative exception for spells 57508 - 57512

This commit is contained in:
Xfurry 2013-05-31 10:18:19 +01:00 committed by Antz
parent 537d6e98d9
commit 3e12f9e6c7
2 changed files with 16 additions and 1 deletions

View file

@ -953,6 +953,21 @@ bool IsPositiveEffect(SpellEntry const* spellproto, SpellEffectIndex effIndex)
}
break;
}
case SPELL_AURA_PHASE:
{
switch (spellproto->Id)
{
case 57508: // Insanity (16)
case 57509: // Insanity (32)
case 57510: // Insanity (64)
case 57511: // Insanity (128)
case 57512: // Insanity (256)
return false;
default:
break;
}
break;
}
default:
break;
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12578"
#define REVISION_NR "12579"
#endif // __REVISION_NR_H__