diff options
author | Tim Angus <tim@ngus.net> | 2006-12-29 15:07:52 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-12-29 15:07:52 +0000 |
commit | df4de6463251019ecf150d835c3693bf7502ccd1 (patch) | |
tree | 0883015c9176f5a924efdaf73e71744a0cb4f537 /src/game/g_client.c | |
parent | 210115d7ef5f8be82036458359bdf9f00c2bfb67 (diff) |
* Buildable destruction marking (via g_markDeconstruct)
* It's now impossible to destroy the last spawn
* Start of a new client side buildable status display
Diffstat (limited to 'src/game/g_client.c')
-rw-r--r-- | src/game/g_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 88d752bc..e2bbf948 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1141,7 +1141,7 @@ void ClientUserinfoChanged( int clientNum ) // print scoreboards, display models, and play custom sounds Com_sprintf( userinfo, sizeof( userinfo ), - "n\\%s\\t\\%i\\model\\%s\\hmodel\\%s\\g_redteam\\humans\\g_blueteam\\aliens" + "n\\%s\\t\\%i\\model\\%s\\hmodel\\%s" "\\c1\\%s\\c2\\%s\\hc\\%i\\w\\%i\\l\\%i\\tt\\%d\\tl\\%d", client->pers.netname, team, model, model, c1, c2, client->pers.maxHealth, client->sess.wins, client->sess.losses, teamTask, teamLeader ); @@ -1399,7 +1399,7 @@ void ClientSpawn( gentity_t *ent, gentity_t *spawn, vec3_t origin, vec3_t angles if( ent != spawn ) { //start spawn animation on spawnPoint - G_setBuildableAnim( spawnPoint, BANIM_SPAWN1, qtrue ); + G_SetBuildableAnim( spawnPoint, BANIM_SPAWN1, qtrue ); if( spawnPoint->biteam == PTE_ALIENS ) spawnPoint->clientSpawnTime = ALIEN_SPAWN_REPEAT_TIME; |