diff options
Diffstat (limited to 'src/game/g_ptr.c')
-rw-r--r-- | src/game/g_ptr.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/game/g_ptr.c b/src/game/g_ptr.c index 869df256..1afef0e9 100644 --- a/src/game/g_ptr.c +++ b/src/game/g_ptr.c @@ -62,10 +62,7 @@ void G_UpdatePTRConnection( gclient_t *client ) if( client && client->pers.connection ) { client->pers.connection->clientTeam = client->pers.teamSelection; - if( client->pers.teamSelection == TEAM_NONE ) - client->pers.connection->clientCredit = client->pers.savedCredit; - else - client->pers.connection->clientCredit = client->ps.persistant[ PERS_CREDIT ]; + client->pers.connection->clientCredit = client->pers.credit; } } |