diff options
author | Tim Angus <tim@ngus.net> | 2005-07-21 01:42:41 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-07-21 01:42:41 +0000 |
commit | 48d452bba1e9845d7935e03c520623f0b65a136d (patch) | |
tree | a14ca612d27d7f254920771b1f0a0d0ceb55afe9 /src/game/g_team.c | |
parent | e98dcba13a94fb5c826d5d2e50d2a7bcc67040d1 (diff) |
* Change death by dragoon obituary from "clawed" to "chomped"
* Fixed the bug where spectators saw team chat
* Added ping display to the lagometer
* Renormalised some balance variables
* Fixed the bug where bodies would sometimes disappear immediately after death
* Fixed the "dancing buildables" bug
* Fixed the bug where buildable animation sounds were inappropriately played upon entering PVS
* Fixed a subtle stage bug
* Added code to indicate which stage a team is on via the scoreboard
Diffstat (limited to 'src/game/g_team.c')
-rw-r--r-- | src/game/g_team.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_team.c b/src/game/g_team.c index 538a29e2..9e0eb078 100644 --- a/src/game/g_team.c +++ b/src/game/g_team.c @@ -48,7 +48,7 @@ qboolean OnSameTeam( gentity_t *ent1, gentity_t *ent2 ) if( !ent1->client || !ent2->client ) return qfalse; - if( ent1->client->ps.stats[ STAT_PTEAM ] == ent2->client->ps.stats[ STAT_PTEAM ] ) + if( ent1->client->pers.teamSelection == ent2->client->pers.teamSelection ) return qtrue; return qfalse; |