Paper/Spigot-Server-Patches/0075-Waving-banner-workaround.patch

39 lines
1.3 KiB
Diff
Raw Normal View History

From 2a29c283343e48329376f2c90d533e7bdd3bd6d0 Mon Sep 17 00:00:00 2001
From: Gabscap <git@gabscap.de>
2016-03-21 14:34:09 +00:00
Date: Sat, 19 Mar 2016 22:25:11 +0100
Subject: [PATCH] Waving banner workaround
This patch is a workaround for MC-63720
diff --git a/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java b/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java
index 731b96dea2..2a0fd2fbc0 100644
2016-03-21 14:34:09 +00:00
--- a/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java
+++ b/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java
@@ -3,7 +3,13 @@ package net.minecraft.server;
import java.io.IOException;
2016-03-21 14:34:09 +00:00
public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
+ // World Age in ticks
+ // Not changed by server commands
+ // World Age must not be negative
2016-03-21 14:34:09 +00:00
private long a;
+ // Time of Day in ticks
+ // If negative the sun will stop moving at the Math.abs of the time
+ // Displayed in the debug screen (F3)
2016-03-21 14:34:09 +00:00
private long b;
public PacketPlayOutUpdateTime() {
@@ -19,6 +25,9 @@ public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
2016-03-21 14:34:09 +00:00
}
}
+ // Paper start
+ this.a = this.a % 192000;
2016-03-21 14:34:09 +00:00
+ // Paper end
}
public void a(PacketDataSerializer packetdataserializer) throws IOException {
--
2.19.0
2016-03-21 14:34:09 +00:00