mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
d089acb3bd
ForgeFlower is better than Spigots FernFlower at decompiling the source. However, in order to maintain the CraftBukkit patches, we must keep using spigots for the primary. However, for any file that we import on top of Spigots imported files there is nothing stopping us from using better decompiled files. So these changes will use ForgeFlower to maintain a better set of decomped files, so anything we add on top of Paper can start off in a better spot.
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From be2605540c49de075459ddf5825d142b945c57eb Mon Sep 17 00:00:00 2001
|
|
From: Gabscap <git@gabscap.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 731b96dea2..2a0fd2fbc0 100644
|
|
--- 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;
|
|
|
|
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.18.0
|
|
|