sv_fps must have CVAR_SAVEGAME and CVAR_SERVERINFO

This commit is contained in:
smallmodel 2023-08-21 00:08:08 +02:00
parent 20282ffa56
commit 58321be1ce
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -1002,7 +1002,7 @@ void SV_Init( void ) {
// server vars
sv_rconPassword = Cvar_Get ("rconPassword", "", CVAR_TEMP );
sv_privatePassword = Cvar_Get ("sv_privatePassword", "", CVAR_TEMP );
sv_fps = Cvar_Get ("sv_fps", "20", CVAR_TEMP );
sv_fps = Cvar_Get ("sv_fps", "20", CVAR_SAVEGAME | CVAR_SERVERINFO );
sv_timeout = Cvar_Get ("sv_timeout", "120", CVAR_TEMP );
sv_zombietime = Cvar_Get ("sv_zombietime", "2", CVAR_TEMP );
Cvar_Get ("nextmap", "", CVAR_TEMP );