aboutsummaryrefslogtreecommitdiff
path: root/src/game/Unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r--src/game/Unit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index adb5dceb85c..1204c508695 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -11951,7 +11951,7 @@ bool Unit::CanHaveThreatList() const
float Unit::ApplyTotalThreatModifier(float fThreat, SpellSchoolMask schoolMask)
{
- if (!HasAuraType(SPELL_AURA_MOD_THREAT))
+ if (!HasAuraType(SPELL_AURA_MOD_THREAT) || fThreat < 0)
return fThreat;
SpellSchools school = GetFirstSchoolInMask(schoolMask);