aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch
diff options
context:
space:
mode:
authorZach Brown <[email protected]>2018-10-23 19:03:32 -0400
committerZach Brown <[email protected]>2018-10-23 19:03:32 -0400
commitb15c43a38971a92fff66282e937923cfad488a71 (patch)
treeb02bb3344f2615ce3f7f4da6b84fb244f71d41aa /Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch
parente7245e68bd9289007c26e08809da599907f91f33 (diff)
downloadPaper-b15c43a38971a92fff66282e937923cfad488a71.tar.gz
Paper-b15c43a38971a92fff66282e937923cfad488a71.zip
Update upstream for minecart spawner improvement
Diffstat (limited to 'Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch')
-rw-r--r--Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch b/Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch
new file mode 100644
index 0000000000..0704357df5
--- /dev/null
+++ b/Spigot-Server-Patches/0344-MC-111480-Start-Entity-ID-s-at-1.patch
@@ -0,0 +1,24 @@
+From 996d5012be524c6833e6834a0fe7e530993ef648 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Sun, 29 Jul 2018 22:58:47 -0400
+Subject: [PATCH] MC-111480: Start Entity ID's at 1
+
+DataWatchers that store Entity ID's treat 0 as special,
+and can break things such as Elytra Fireworks.
+
+diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
+index d2dbaaf2..3a2ff25e 100644
+--- a/src/main/java/net/minecraft/server/Entity.java
++++ b/src/main/java/net/minecraft/server/Entity.java
+@@ -81,7 +81,7 @@ public abstract class Entity implements ICommandListener, KeyedObject { // Paper
+ private static final List<ItemStack> b = Collections.emptyList();
+ private static final AxisAlignedBB c = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.0D, 0.0D, 0.0D);
+ private static double f = 1.0D;
+- private static int entityCount;
++ private static int entityCount = 1; // Paper - MC-111480 - ID 0 is treated as special for DataWatchers, start 1
+ private int id;
+ public boolean i; public boolean blocksEntitySpawning() { return i; } // Paper - OBFHELPER
+ public final List<Entity> passengers;
+--
+2.19.1
+