diff options
Diffstat (limited to 'src/sv_init.c')
-rw-r--r-- | src/sv_init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sv_init.c b/src/sv_init.c index a6f7ec8..6d443a1 100644 --- a/src/sv_init.c +++ b/src/sv_init.c @@ -273,6 +273,7 @@ void SV_InitGame( qboolean ismvd ) { #endif CM_FreeMap( &sv.cm ); + SV_FreeFile( sv.entitystring ); memset( &sv, 0, sizeof( sv ) ); } @@ -360,8 +361,6 @@ void SV_InitGame( qboolean ismvd ) { // send heartbeat very soon svs.last_heartbeat = -(HEARTBEAT_SECONDS-5)*1000; - List_Init( &svs.client_list ); - for( i = 0; i < sv_maxclients->integer; i++ ) { client = svs.client_pool + i; entnum = i + 1; |