diff options
author | Tim Angus <tim@ngus.net> | 2006-04-09 22:05:35 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-04-09 22:05:35 +0000 |
commit | 25fcd1f90c39ce5c7eb4dfab0fedb4388ad4289c (patch) | |
tree | 9680d9ae32cd6fb4cfcfc175a2c4446d237c969c /src/game/g_client.c | |
parent | cf9b7835e0f7021739bc620ac51c6081036faaee (diff) |
* Removed CS_SCORE? config strings -- they were unused
* Moved server command queuing from game to server -- sv_dequeuePeriod probably
needs to be lowered
* Added g_friendlyBuildableFire to enable friendly buildable fire
Diffstat (limited to 'src/game/g_client.c')
-rw-r--r-- | src/game/g_client.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 4fb7d37e..f0b33e03 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -995,7 +995,7 @@ void ClientUserinfoChanged( int clientNum ) { if( strcmp( oldname, client->pers.netname ) ) { - G_SendCommandFromServer( -1, va( "print \"%s" S_COLOR_WHITE " renamed to %s\n\"", oldname, + trap_SendServerCommand( -1, va( "print \"%s" S_COLOR_WHITE " renamed to %s\n\"", oldname, client->pers.netname ) ); } } @@ -1164,7 +1164,7 @@ char *ClientConnect( int clientNum, qboolean firstTime, qboolean isBot ) // don't do the "xxx connected" messages if they were caried over from previous level if( firstTime ) - G_SendCommandFromServer( -1, va( "print \"%s" S_COLOR_WHITE " connected\n\"", client->pers.netname ) ); + trap_SendServerCommand( -1, va( "print \"%s" S_COLOR_WHITE " connected\n\"", client->pers.netname ) ); // count current clients and rank for scoreboard CalculateRanks( ); @@ -1216,12 +1216,10 @@ void ClientBegin( int clientNum ) ClientSpawn( ent, NULL, NULL, NULL ); - G_InitCommandQueue( clientNum ); - - G_SendCommandFromServer( -1, va( "print \"%s" S_COLOR_WHITE " entered the game\n\"", client->pers.netname ) ); + trap_SendServerCommand( -1, va( "print \"%s" S_COLOR_WHITE " entered the game\n\"", client->pers.netname ) ); // request the clients PTR code - G_SendCommandFromServer( ent - g_entities, "ptrcrequest" ); + trap_SendServerCommand( ent - g_entities, "ptrcrequest" ); G_LogPrintf( "ClientBegin: %i\n", clientNum ); |