mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[c12619] Add positive exception for spell 38449
This commit is contained in:
parent
c28e14589f
commit
630546c9df
2 changed files with 13 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue