diff options
Diffstat (limited to 'src/game/g_client.c')
-rw-r--r-- | src/game/g_client.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 0e657f0a..b1b07df4 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1590,6 +1590,14 @@ void ClientSpawn( gentity_t *ent, gentity_t *spawn, vec3_t origin, vec3_t angles BG_PlayerStateToEntityState( &client->ps, &ent->s, qtrue ); VectorCopy( ent->client->ps.origin, ent->r.currentOrigin ); trap_LinkEntity( ent ); + + // if this is devmap, give them some credits + if( g_cheats.integer && ent != spawn ) + { + int credits = ent->client->pers.teamSelection == PTE_HUMANS ? 1000 : 5; + + G_AddCreditToClient( ent->client, credits, qtrue ); + } } // must do this here so the number of active clients is calculated |