diff options
author | Tim Angus <tim@ngus.net> | 2005-07-02 19:29:17 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-07-02 19:29:17 +0000 |
commit | 5097748e7b51a85e46047659a429532793d3fc93 (patch) | |
tree | 864553da08e07dde2227cc462e9d229e608bd1b6 /src/game/g_local.h | |
parent | 7c13523d9b02f1319dec7dd0dece68f96f17ed35 (diff) |
* Fixed the PTRC system interfering with the observer mode
* Refactored observer mode code
* Fixed poison cloud being distorted in observer mode (by not rendering it)
* Fixed walking wall smoothing being distorted in observer mode (by not performing any smoothing)
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 00b38bbe..2db714f2 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -600,9 +600,10 @@ char *G_NewString( const char *string ); // // g_cmds.c // -void Cmd_Score_f( gentity_t *ent ); -void G_StopFollowing( gentity_t *ent ); -void Cmd_Follow_f( gentity_t *ent, qboolean toggle ); +void Cmd_Score_f( gentity_t *ent ); +void G_StopFollowing( gentity_t *ent ); +qboolean G_FollowNewClient( gentity_t *ent, int dir ); +void Cmd_Follow_f( gentity_t *ent, qboolean toggle ); // // g_physics.c |