From 97a7de3377b45de33f84e356b17ea998f2cb62c2 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Tue, 14 Feb 2023 23:40:37 +0100 Subject: [PATCH] engine: server: remove duplicate registration for sv_autosave --- engine/server/sv_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/server/sv_main.c b/engine/server/sv_main.c index 6a9c9d7a..43167322 100644 --- a/engine/server/sv_main.c +++ b/engine/server/sv_main.c @@ -983,8 +983,6 @@ void SV_Init( void ) Cvar_RegisterVariable( &sv_enttools_enable ); Cvar_RegisterVariable( &sv_enttools_maxfire ); - Cvar_RegisterVariable( &sv_autosave ); - sv_allow_joystick = Cvar_Get( "sv_allow_joystick", "1", FCVAR_ARCHIVE, "allow connect with joystick enabled" ); sv_allow_mouse = Cvar_Get( "sv_allow_mouse", "1", FCVAR_ARCHIVE, "allow connect with mouse" ); sv_allow_touch = Cvar_Get( "sv_allow_touch", "1", FCVAR_ARCHIVE, "allow connect with touch controls" );