mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
SetTimeTranslator: cast from long on the entire modulus
This should fix some inaccuracies with time on older worlds.
This commit is contained in:
parent
98db9c6948
commit
0803c5d9af
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public class JavaSetTimeTranslator extends PacketTranslator<ClientboundSetTimePa
|
|||
// We use modulus to prevent an integer overflow
|
||||
// 24000 is the range of ticks that a Minecraft day can be; we times by 8 so all moon phases are visible
|
||||
// (Last verified behavior: Bedrock 1.18.12 / Java 1.18.2)
|
||||
setTimePacket.setTime((int) Math.abs(time) % (24000 * 8));
|
||||
setTimePacket.setTime((int) (Math.abs(time) % (24000 * 8)));
|
||||
session.sendUpstreamPacket(setTimePacket);
|
||||
if (!session.isDaylightCycle() && time >= 0) {
|
||||
// Client thinks there is no daylight cycle but there is
|
||||
|
|
Loading…
Reference in a new issue