mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 18:01:17 +01:00
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Gabscap <git@gabscap.de>
|
|
Date: Sat, 19 Mar 2016 22:25:11 +0100
|
|
Subject: [PATCH] Guardian beam workaround
|
|
|
|
This patch is a workaround for MC-165595
|
|
|
|
diff --git a/src/main/java/net/minecraft/network/protocol/game/PacketPlayOutUpdateTime.java b/src/main/java/net/minecraft/network/protocol/game/PacketPlayOutUpdateTime.java
|
|
index a69e60a8934493f6786ce3d425f6dccb6e4befdd..3086ee023685781d94e2fb99fc8dff5264f01165 100644
|
|
--- a/src/main/java/net/minecraft/network/protocol/game/PacketPlayOutUpdateTime.java
|
|
+++ b/src/main/java/net/minecraft/network/protocol/game/PacketPlayOutUpdateTime.java
|
|
@@ -6,7 +6,7 @@ import net.minecraft.network.protocol.Packet;
|
|
|
|
public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
|
|
|
|
- private long a;
|
|
+ private long a; private final void setWorldAge(final long age) { this.a = age; } private final long getWorldAge() { return this.a; } // Paper - OBFHELPER
|
|
private long b;
|
|
|
|
public PacketPlayOutUpdateTime() {}
|
|
@@ -21,6 +21,9 @@ public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
|
|
}
|
|
}
|
|
|
|
+ // Paper start
|
|
+ this.setWorldAge(this.getWorldAge() % 192000);
|
|
+ // Paper end
|
|
}
|
|
|
|
@Override
|