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/mvd_game.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/mvd_game.c')
-rw-r--r-- | source/mvd_game.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mvd_game.c b/source/mvd_game.c index 2a6bff1..76fac6d 100644 --- a/source/mvd_game.c +++ b/source/mvd_game.c @@ -425,7 +425,7 @@ void MVD_SwitchChannel( udpClient_t *client, mvd_t *mvd ) { cl->gamedir = mvd->gamedir; cl->mapname = mvd->configstrings[CS_NAME]; cl->configstrings = ( char * )mvd->configstrings; - cl->number = mvd->clientNum; + cl->slot = mvd->clientNum; cl->cm = &mvd->cm; cl->pool = &mvd->pool; |