summaryrefslogtreecommitdiff
path: root/src/game/g_team.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_team.c')
-rw-r--r--src/game/g_team.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/game/g_team.c b/src/game/g_team.c
index 5a2d5438..96e7e39e 100644
--- a/src/game/g_team.c
+++ b/src/game/g_team.c
@@ -143,12 +143,7 @@ void G_ChangeTeam( gentity_t *ent, team_t newTeam )
ent->client->pers.joinedATeam = qtrue;
ent->client->pers.teamChangeTime = level.time;
- if( oldTeam == TEAM_NONE )
- {
- // Copy credits to ps for the client
- ent->client->ps.persistant[ PERS_CREDIT ] = ent->client->pers.credit;
- }
- else if( oldTeam == TEAM_HUMANS && newTeam == TEAM_ALIENS )
+ if( oldTeam == TEAM_HUMANS && newTeam == TEAM_ALIENS )
{
// Convert from human to alien credits
ent->client->pers.credit =
@@ -163,6 +158,9 @@ void G_ChangeTeam( gentity_t *ent, team_t newTeam )
HUMAN_MAX_CREDITS / ALIEN_MAX_CREDITS + 0.5f );
}
+ // Copy credits to ps for the client
+ ent->client->ps.persistant[ PERS_CREDIT ] = ent->client->pers.credit;
+
ClientUserinfoChanged( ent->client->ps.clientNum );
if( oldTeam != TEAM_NONE && newTeam != TEAM_NONE )