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_mvd.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_mvd.c')
-rw-r--r-- | source/sv_mvd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_mvd.c b/source/sv_mvd.c index df43b12..2cc6983 100644 --- a/source/sv_mvd.c +++ b/source/sv_mvd.c @@ -373,7 +373,7 @@ qboolean SV_MvdCreateDummy( void ) { memset( newcl, 0, sizeof( *newcl ) ); number = newcl - svs.udp_client_pool; - newcl->number = number; + newcl->number = newcl->slot = number; newcl->protocol = -1; newcl->state = cs_connected; newcl->AddMessage = SV_DummyAddMessage; |