[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) if (!aura)
return; return;
int32 bp = aura->GetModifier()->m_amount; int32 bp0 = aura->GetModifier()->m_amount;
m_target->CastCustomSpell(m_target, 61261, &bp, NULL, NULL, true, NULL, NULL, GetCasterGuid()); 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 else
m_target->RemoveAurasDueToSpell(61261); m_target->RemoveAurasDueToSpell(61261);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10980" #define REVISION_NR "10981"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__