SetTimeTranslator: cast from long on the entire modulus

This should fix some inaccuracies with time on older worlds.
This commit is contained in:
Camotoy 2022-04-12 19:42:41 -04:00
parent 98db9c6948
commit 0803c5d9af
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 1 deletions

View File

@ -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