From e356cd3989d73652525cc6f2a6b874f90c3e9689 Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 29 Jul 2018 23:05:35 -0400 Subject: [PATCH] Fix last patch for 1.13, pulled the push button too quickly... --- ... 0322-MC-111480-Start-Entity-ID-s-at-1.patch} | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename Spigot-Server-Patches/{0345-MC-111480-Start-Entity-ID-s-at-1.patch => 0322-MC-111480-Start-Entity-ID-s-at-1.patch} (54%) diff --git a/Spigot-Server-Patches/0345-MC-111480-Start-Entity-ID-s-at-1.patch b/Spigot-Server-Patches/0322-MC-111480-Start-Entity-ID-s-at-1.patch similarity index 54% rename from Spigot-Server-Patches/0345-MC-111480-Start-Entity-ID-s-at-1.patch rename to Spigot-Server-Patches/0322-MC-111480-Start-Entity-ID-s-at-1.patch index 7bba1729d..0918808a4 100644 --- a/Spigot-Server-Patches/0345-MC-111480-Start-Entity-ID-s-at-1.patch +++ b/Spigot-Server-Patches/0322-MC-111480-Start-Entity-ID-s-at-1.patch @@ -1,4 +1,4 @@ -From b65086b45edfb15a357b918552a2d8284cce6c88 Mon Sep 17 00:00:00 2001 +From 94c2a47565acf1fdadeb9b1c7554ff34734f4a44 Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 29 Jul 2018 22:58:47 -0400 Subject: [PATCH] MC-111480: Start Entity ID's at 1 @@ -7,18 +7,18 @@ 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 fce677f9f6..9b5f7fcf72 100644 +index 91408ce597..67df79e311 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 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; +@@ -90,7 +90,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke + private static final List a = Collections.emptyList(); + private static final AxisAlignedBB b = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.0D, 0.0D, 0.0D); + private static double c = 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 final EntityTypes g; public EntityTypes getEntityType() { return g; } // Paper - OBFHELPER private int id; - public boolean i; public boolean blocksEntitySpawning() { return i; } // Paper - OBFHELPER - public final List passengers; + public boolean j; public boolean blocksEntitySpawning() { return j; } // Paper - OBFHELPER -- 2.18.0