[10981] Removed 600 percent threat mod for talent 50385

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
x3n 2011-01-07 08:18:33 +03:00 committed by VladimirMangos
parent 7ca769f031
commit f56ae22ed9
2 changed files with 4 additions and 3 deletions

View file

@ -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);