PaperMC/Spigot-Server-Patches/Backwards-compatible-PacketPlayOutEntityTeleport-con.patch
Zach Brown a4bc5cc10c Remove 1.8 blocks/items patches
For those interested in these features, you can continue to use these patches in your own builds or use a plugin, such as Carbon, to add them
2014-10-14 19:28:05 -05:00

32 lines
No EOL
1.4 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Byteflux <byte@byteflux.net>
Date: Sat, 13 Sep 2014 02:23:56 -0700
Subject: [PATCH] Backwards compatible PacketPlayOutEntityTeleport constructor
diff --git a/src/main/java/net/minecraft/server/PacketPlayOutEntityTeleport.java b/src/main/java/net/minecraft/server/PacketPlayOutEntityTeleport.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/server/PacketPlayOutEntityTeleport.java
+++ b/src/main/java/net/minecraft/server/PacketPlayOutEntityTeleport.java
@@ -0,0 +0,0 @@ public class PacketPlayOutEntityTeleport extends Packet {
this.heightCorrection = heightCorrection; // Spigot Update - 20140916a
}
+ /**
+ * PaperSpigot - Backwards compatible PacketPlayOutEntityTeleport contructor
+ */
+ public PacketPlayOutEntityTeleport(int i, int j, int k, int l, byte b0, byte b1, boolean onGround) {
+ this(i, j, k, l, b0, b1, onGround, false);
+ }
+
+ /**
+ * PaperSpigot - Backwards compatible PacketPlayOutEntityTeleport contructor
+ */
+ public PacketPlayOutEntityTeleport(int i, int j, int k, int l, byte b0, byte b1) {
+ this(i, j, k, l, b0, b1, false, false);
+ }
+
public void a(PacketDataSerializer packetdataserializer) {
this.a = packetdataserializer.readInt();
this.b = packetdataserializer.readInt();
--