Skip to content

Commit

Permalink
[c12620] Add positive exception for spell 38449
Browse files Browse the repository at this point in the history
(based on commit [12459] - d20af89)

Signed-off-by: Dramacydal <PulLumBerMal@gmail.com>
  • Loading branch information
xfurry authored and Dramacydal committed Apr 24, 2013
1 parent 3b177fd commit c21fb88
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/game/SpellMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12619"
#define REVISION_NR "12620"
#endif // __REVISION_NR_H__

0 comments on commit c21fb88

Please sign in to comment.