diff options
author | maximius <none@none> | 2009-10-18 18:38:46 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-18 18:38:46 -0700 |
commit | d22768a6b5aa3eae1c58a418425eca08905cd677 (patch) | |
tree | d229851a558defcbaf3fb010947a80726d01c8c6 /src/game/HostilRefManager.h | |
parent | 864b3f31e94e46077634ec6bfcad1769f4f2c889 (diff) |
*Cleanup
--HG--
branch : trunk
Diffstat (limited to 'src/game/HostilRefManager.h')
-rw-r--r-- | src/game/HostilRefManager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/HostilRefManager.h b/src/game/HostilRefManager.h index 316509e3908..a25a6011575 100644 --- a/src/game/HostilRefManager.h +++ b/src/game/HostilRefManager.h @@ -44,9 +44,9 @@ class HostilRefManager : public RefManager<Unit, ThreatManager> // send threat to all my hateres for the pVictim // The pVictim is hated than by them as well // use for buffs and healing threat functionality - void threatAssist(Unit *pVictim, float threat, SpellEntry const *threatSpell = 0, bool pSingleTarget=false); + void threatAssist(Unit *pVictim, float fThreat, SpellEntry const *threatSpell = 0, bool pSingleTarget = false); - void addThreatPercent(int32 pValue); + void addThreatPercent(int32 iPercent); // The references are not needed anymore // tell the source to remove them from the list and free the mem @@ -56,10 +56,10 @@ class HostilRefManager : public RefManager<Unit, ThreatManager> void updateThreatTables(); - void setOnlineOfflineState(bool pIsOnline); + void setOnlineOfflineState(bool bIsOnline); // set state for one reference, defined by Unit - void setOnlineOfflineState(Unit *pCreature,bool pIsOnline); + void setOnlineOfflineState(Unit *pCreature, bool bIsOnline); // delete one reference, defined by Unit void deleteReference(Unit *pCreature); |