add functionality for avoidtimesync

This commit is contained in:
Mister_Nebula 2021-11-25 23:52:46 +00:00
parent 7054b239a1
commit cebd3234f1
2 changed files with 7 additions and 4 deletions

View File

@ -121,7 +121,10 @@ namespace QSB.TimeSync
}
else
{
WakeUpOrSleep();
if (!QSBCore.SkipTitleScreen)
{
WakeUpOrSleep();
}
}
}
@ -240,7 +243,7 @@ namespace QSB.TimeSync
{
UpdateServer();
}
else if (IsLocalPlayer)
else if (IsLocalPlayer && !QSBCore.AvoidTimeSync)
{
UpdateClient();
}

View File

@ -1,8 +1,8 @@
{
"debugMode": true,
"showLines": false,
"drawLines": true,
"showQuantumVisibilityObjects": false,
"showQuantumDebugBoxes": false,
"avoidTimeSync": false,
"avoidTimeSync": true,
"skipTitleScreen": true
}