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 915410430f3..fdf54cb018a 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -11950,7 +11950,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);