diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index d5cd4d959..39e9a4cb8 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -9026,8 +9026,9 @@ void SpellAuraHolder::HandleSpellSpecificBoosts(bool apply) if (!aura) return; - int32 bp = aura->GetModifier()->m_amount; - m_target->CastCustomSpell(m_target, 61261, &bp, NULL, NULL, true, NULL, NULL, GetCasterGuid()); + int32 bp0 = aura->GetModifier()->m_amount; + int32 bp1 = 0; // disable threat mod part for not Frost Presence case + m_target->CastCustomSpell(m_target, 61261, &bp0, &bp1, NULL, true, NULL, NULL, GetCasterGuid()); } else m_target->RemoveAurasDueToSpell(61261); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e64370bbb..02b8169a7 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 "10980" + #define REVISION_NR "10981" #endif // __REVISION_NR_H__