mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-13 22:25:31 +01:00
be13705177
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes: 6b8cd9a7 SPIGOT-6207: forcibly drop the items of a converted zombie villager
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
|