mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:45:10 +01:00
Off-by-one desync
This commit is contained in:
parent
fd1990f732
commit
b3cf7a6f90
@ -68,7 +68,10 @@ public class ServerSpeedProvider {
|
|||||||
}
|
}
|
||||||
float target = ((float) getSyncInterval()) / Math.max(clientTimer, 1);
|
float target = ((float) getSyncInterval()) / Math.max(clientTimer, 1);
|
||||||
modifier.target(Math.min(target, 1));
|
modifier.target(Math.min(target, 1));
|
||||||
clientTimer = 0;
|
// Set this to -1 because packets are processed before ticks.
|
||||||
|
// ServerSpeedProvider#clientTick will increment it to 0 at the end of this tick.
|
||||||
|
// Setting it to 0 causes consistent desync, as the client ends up counting too many ticks.
|
||||||
|
clientTimer = -1;
|
||||||
|
|
||||||
});
|
});
|
||||||
context.get()
|
context.get()
|
||||||
|
Loading…
Reference in New Issue
Block a user