remove a bool around that might affect some rare checkpoints error

This commit is contained in:
rtldg 2022-02-27 04:07:13 +00:00
parent 060ce5e660
commit 98fcc37b7b

View File

@ -705,6 +705,7 @@ void LoadPersistentData(int serial)
return; return;
} }
gB_SaveStates[client] = false;
LoadCheckpointCache(client, aData.cpcache, true); LoadCheckpointCache(client, aData.cpcache, true);
gI_TimesTeleported[client] = aData.iTimesTeleported; gI_TimesTeleported[client] = aData.iTimesTeleported;
@ -723,7 +724,6 @@ void LoadPersistentData(int serial)
} }
} }
gB_SaveStates[client] = false;
DeletePersistentData(iIndex, aData); DeletePersistentData(iIndex, aData);
} }