diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-01-06 18:34:29 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-01-06 18:34:29 +0000 |
commit | 79d1509407240c0d549843009dba4b37b64c2a9b (patch) | |
tree | 1b36d35d3add67a082262f7355778dacc371a171 /source/sv_user.c | |
parent | 0746f5d59cbf076310feca52581833a7b45f9663 (diff) |
Fixed invalid client ID being displayed by `status' command on GTV servers.
Fixed stupid Sys_Sleep bug on Unix systems.
Draw `Loading anticheat...' string in connection screen.
Added Sys_GetAntiCheatAPI stub into sys_unix.c for testing purposes.
Diffstat (limited to 'source/sv_user.c')
-rw-r--r-- | source/sv_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_user.c b/source/sv_user.c index ebd5acb..8761ebf 100644 --- a/source/sv_user.c +++ b/source/sv_user.c @@ -364,7 +364,7 @@ void SV_New_f( void ) { MSG_WriteLong( sv.spawncount ); MSG_WriteByte( 0 ); // no attract loop MSG_WriteString( sv_client->gamedir ); - MSG_WriteShort( sv_client->number ); + MSG_WriteShort( sv_client->slot ); MSG_WriteString( sv_client->mapname ); // send protocol specific stuff |