From 7daeca53eb5943ac7a3c6b77ea3daa53dc2508c8 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Thu, 29 Apr 2010 23:27:03 -0400 Subject: [PATCH] Updated IPlayerInfo AGAIN. --- game/server/player.h | 2 +- public/game/server/iplayerinfo.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game/server/player.h b/game/server/player.h index f3818bf0..567db925 100644 --- a/game/server/player.h +++ b/game/server/player.h @@ -188,7 +188,6 @@ public: virtual int GetArmorValue(); virtual bool IsHLTV(); - virtual bool IsReplay(); virtual bool IsPlayer(); virtual bool IsFakeClient(); virtual bool IsDead(); @@ -219,6 +218,7 @@ public: virtual void SetLastUserCommand( const CBotCmd &cmd ); virtual CBotCmd GetLastUserCommand(); + virtual bool IsReplay(); private: CBasePlayer *m_pParent; diff --git a/public/game/server/iplayerinfo.h b/public/game/server/iplayerinfo.h index 2bcbf17b..2f6c47ac 100644 --- a/public/game/server/iplayerinfo.h +++ b/public/game/server/iplayerinfo.h @@ -124,7 +124,6 @@ public: // various player flags virtual bool IsHLTV() = 0; - virtual bool IsReplay() = 0; virtual bool IsPlayer() = 0; virtual bool IsFakeClient() = 0; virtual bool IsDead() = 0; @@ -146,6 +145,7 @@ public: virtual const int GetMaxHealth() = 0; // the last user input from this player virtual CBotCmd GetLastUserCommand() = 0; + virtual bool IsReplay() = 0; };