================== idAsyncServer::InitLocalClient ================== */
| 694 | ================== |
| 695 | */ |
| 696 | void idAsyncServer::InitLocalClient( int clientNum ) { |
| 697 | netadr_t badAddress; |
| 698 | |
| 699 | localClientNum = clientNum; |
| 700 | InitClient( clientNum, 0, 0 ); |
| 701 | memset( &badAddress, 0, sizeof( badAddress ) ); |
| 702 | badAddress.type = NA_BAD; |
| 703 | clients[clientNum].channel.Init( badAddress, serverId ); |
| 704 | clients[clientNum].clientState = SCS_INGAME; |
| 705 | sessLocal.mapSpawnData.userInfo[clientNum] = *cvarSystem->MoveCVarsToDict( CVAR_USERINFO ); |
| 706 | } |
| 707 | |
| 708 | /* |
| 709 | ================== |
nothing calls this directly
no test coverage detected