diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index be5c309c0..f02f7e6d5 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -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) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 0299f4d25..ac78ef79d 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12618" + #define REVISION_NR "12619" #endif // __REVISION_NR_H__