aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0084-Waving-banner-workaround.patch
blob: c78b28998067fcce182de29afc2a5035d60b4b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
From 9db8303c4d0edf7f783e2f8656b2f8f68fae80cb Mon Sep 17 00:00:00 2001
From: Gabscap <sonstige.netzwerke@gabriel-paradzik.de>
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 c5c3f40ce..6413f76e7 100644
--- a/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java
+++ b/src/main/java/net/minecraft/server/PacketPlayOutUpdateTime.java
@@ -4,7 +4,13 @@ import java.io.IOException;
 
 public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
 
+    // World Age in ticks
+    // Not changed by server commands
+    // World Age must not be negative
     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)
     private long b;
 
     public PacketPlayOutUpdateTime() {}
@@ -19,6 +25,9 @@ public class PacketPlayOutUpdateTime implements Packet<PacketListenerPlayOut> {
             }
         }
 
+        // Paper start
+        this.a = this.a % 192000;
+        // Paper end
     }
 
     public void a(PacketDataSerializer packetdataserializer) throws IOException {
-- 
2.12.2.windows.2