Created attachment 2685[details]
this patch removes the mentioned cvar resetting
When the (non-dedicated) server is started, all cheat protected cvars loaded from the config and command line get reset to their default values, if default values exist at that point, game and cgame cvars are not affected. For example, starting the game with arguments "+set bot_developer 1 +devmap q3dm1" will result in bot_developer being 0. Throwing "+set sv_cheats 1" in there doesn't change that. The code responsable for resetting the cvars runs after the UI VM is initialized and does make little sense:
- the client cleans up its cvars anytime it connects to a cheats-off server, so why do it one extra time, at a point where it's not connected to any server, and might join a cheats-on server next, like in the case above?
- the code checks clc.demoplaying and cl_connectedToCheatServer before resetting the cvars. Both variables cannot have been set at this stage, so it's pointless to check them.
I suggest removing the cvar resetting code.
(In reply to comment #2)
> Yes, the remaining check after cgame-init covers the case described in bug
> 3018, I just tested with cg_thirdPersonAngle.
The one case described in 3018.. but what about other cases?
It still looks kind of like an inconsistency to me, having the check after cgame init but not ui init.
I was wrongly assuming that the UI VM is initialized only once, when starting the engine. But even though it is done every time a server is joined, the cvar check can be safely omitted, because the cgame VM (with its cvar check) is initilized right after that.
Moving the cvar check to after the CL_InitCGame calls would restore the consistency. At this point all client cvars have been registered.
Alternatively the cvar check in CL_InitUI could stay in place, with an additional condition to make sure that the check is skipped at engine start and only done when connecting to a server. Something like: if ( !clc.demoplaying && !cl_connectedToCheatServer && cls.state >= CA_CONNECTING ) Cvar_SetCheatState();
Created attachment 2685 [details] this patch removes the mentioned cvar resetting When the (non-dedicated) server is started, all cheat protected cvars loaded from the config and command line get reset to their default values, if default values exist at that point, game and cgame cvars are not affected. For example, starting the game with arguments "+set bot_developer 1 +devmap q3dm1" will result in bot_developer being 0. Throwing "+set sv_cheats 1" in there doesn't change that. The code responsable for resetting the cvars runs after the UI VM is initialized and does make little sense: - the client cleans up its cvars anytime it connects to a cheats-off server, so why do it one extra time, at a point where it's not connected to any server, and might join a cheats-on server next, like in the case above? - the code checks clc.demoplaying and cl_connectedToCheatServer before resetting the cvars. Both variables cannot have been set at this stage, so it's pointless to check them. I suggest removing the cvar resetting code.