diff options
Diffstat (limited to 'source/sv_init.c')
-rw-r--r-- | source/sv_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/sv_init.c b/source/sv_init.c index fb996c5..f2c9d93 100644 --- a/source/sv_init.c +++ b/source/sv_init.c @@ -279,7 +279,8 @@ void SV_InitGame( qboolean ismvd ){ List_Init( &svs.clients ); List_Init( &svs.mvd.clients ); - List_Init( &svs.tcpClients ); + List_Init( &svs.tcp_client_list ); + List_Init( &svs.tcp_client_pool ); for( i = 0; i < sv_maxclients->integer; i++ ) { client = svs.clientpool + i; |