mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
make nosave cvars set their value bypassing network code
This may look as a workaround, it is not. nosave cvars are meant to be used as a storage for statistical data that doesn't affect gameplay. That's why this data isn't saved to the savefile in the first place. Therefore, there is no point in sending this data over network. It would have no meaning on machines other than local.
This commit is contained in:
parent
efd2f8a1a8
commit
f85e3fb9a0
1 changed files with 8 additions and 1 deletions
|
@ -191,7 +191,14 @@ void FBaseCVar::SetGenericRep (UCVarValue value, ECVarType type)
|
|||
Flags &= ~CVAR_UNSAFECONTEXT;
|
||||
return;
|
||||
}
|
||||
D_SendServerInfoChange (this, value, type);
|
||||
if (Flags & CVAR_NOSAVEGAME)
|
||||
{
|
||||
ForceSet (value, type);
|
||||
}
|
||||
else
|
||||
{
|
||||
D_SendServerInfoChange (this, value, type);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue