mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 10:37:06 +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)
|
||||
{
|
||||
case 802: // Mutate Bug, wrongly negative by target modes
|
||||
case 38449: // Blessing of the Tides
|
||||
return true;
|
||||
case 36900: // Soul Split: Evil!
|
||||
case 36901: // Soul Split: Good
|
||||
|
|
@ -942,6 +943,17 @@ bool IsPositiveEffect(SpellEntry const* spellproto, SpellEffectIndex effIndex)
|
|||
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:
|
||||
{
|
||||
switch (spellproto->Id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue