diff options
Diffstat (limited to 'src/game/ThreatManager.cpp')
-rw-r--r-- | src/game/ThreatManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ThreatManager.cpp b/src/game/ThreatManager.cpp index 2800a86f380..9b73ba961ff 100644 --- a/src/game/ThreatManager.cpp +++ b/src/game/ThreatManager.cpp @@ -248,7 +248,7 @@ void ThreatContainer::modifyThreatPercent(Unit *pVictim, int32 iPercent) bool HostileReferenceSortPredicate(const HostileReference* lhs, const HostileReference* rhs) { - // std::list::sort ordering predicate must be: (Pred(x,y)&&Pred(y,x))==false + // std::list::sort ordering predicate must be: (Pred(x,y)&&Pred(y,x)) == false return lhs->getThreat() > rhs->getThreat(); // reverse sorting } |