diff --git a/src/game/HostileRefManager.cpp b/src/game/HostileRefManager.cpp index a45defb7c41..fef91c28453 100644 --- a/src/game/HostileRefManager.cpp +++ b/src/game/HostileRefManager.cpp @@ -63,10 +63,7 @@ void HostileRefManager::threatAssist(Unit *pVictim, float pThreat, SpellEntry co } } - if (pVictim == getOwner()) - ref->addThreat(float (threat) / size); // It is faster to modify the threat durectly if possible - else - ref->getSource()->addThreat(pVictim, float (threat) / size); + ref->getSource()->addThreat(pVictim, float (threat) / size); ref = ref->next(); } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a6a8ad13456..f1bc0d6d895 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11007" + #define REVISION_NR "11008" #endif // __REVISION_NR_H__