[c12619] Add positive exception for spell 38449

This commit is contained in:
Xfurry 2013-05-31 12:18:32 +01:00 committed by Antz
parent c28e14589f
commit 630546c9df
2 changed files with 13 additions and 1 deletions

View file

@ -906,6 +906,7 @@ bool IsPositiveEffect(SpellEntry const* spellproto, SpellEffectIndex effIndex)
switch (spellproto->Id) switch (spellproto->Id)
{ {
case 802: // Mutate Bug, wrongly negative by target modes case 802: // Mutate Bug, wrongly negative by target modes
case 38449: // Blessing of the Tides
return true; return true;
case 36900: // Soul Split: Evil! case 36900: // Soul Split: Evil!
case 36901: // Soul Split: Good case 36901: // Soul Split: Good
@ -942,6 +943,17 @@ bool IsPositiveEffect(SpellEntry const* spellproto, SpellEffectIndex effIndex)
break; break;
} }
} break; } break;
case SPELL_AURA_MOD_MELEE_HASTE:
{
switch (spellproto->Id)
{
case 38449: // Blessing of the Tides
return true;
default:
break;
}
break;
}
case SPELL_AURA_FORCE_REACTION: case SPELL_AURA_FORCE_REACTION:
{ {
switch (spellproto->Id) switch (spellproto->Id)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12618" #define REVISION_NR "12619"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__