1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

make desync detection work again

This commit is contained in:
zsilencer
2015-08-19 19:07:11 -06:00
parent abcd0afa9a
commit 5bb3218d4c
2 changed files with 7 additions and 6 deletions

View File

@@ -536,7 +536,7 @@ bool Network::CheckSRAND(uint32 tick, uint32 srand0)
if (server_srand0_tick == 0)
return true;
if (tick >= server_srand0_tick) {
if (tick > server_srand0_tick) { // this should not happen
server_srand0_tick = 0;
return true;
}