Updated Upstream (Paper)

Upstream has released updates that appears to apply and compile correctly

Paper Changes:
8522e7b2 Fix shutdown on eula not being agreed (Fixes #4647)
c43dcbfc Improve old UUID support, clean up old legacy keys.
f63e3dd1 Allow teleporting through end gateways as a passenger/vehicle
b7d9e3d5 Convert legacy attributes in Item Meta
4fd0d54e Fix server not stopping when eula not agreed yet
6f30ecde Clean up duplicated GameProfile Properties
d3047226 Fix supporting more places of the old UUID format
f5265d66 Updated Upstream (Bukkit/CraftBukkit/Spigot)
This commit is contained in:
William Blake Galbreath
2020-07-01 08:35:49 -05:00
parent 2878dc4f57
commit adf463a0af
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
From ca23ccf9910f7575eedbfa49f004e65da1ab2a06 Mon Sep 17 00:00:00 2001
From 2f75911f11ee50eb4f5cebfbc040042270e54e2f Mon Sep 17 00:00:00 2001
From: William Blake Galbreath <blake.galbreath@gmail.com>
Date: Fri, 5 Jul 2019 16:36:55 -0500
Subject: [PATCH] ItemFactory#getMonsterEgg
@@ -22,10 +22,10 @@ index 6d8321080..793e42072 100644
private final int c;
private final EntityTypes<?> d;
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemFactory.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemFactory.java
index d56f8ca6a..082b77f15 100644
index c28691ae6..616c3e8e4 100644
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemFactory.java
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemFactory.java
@@ -347,4 +347,18 @@ public final class CraftItemFactory implements ItemFactory {
@@ -349,4 +349,18 @@ public final class CraftItemFactory implements ItemFactory {
return nms != null ? net.minecraft.server.LocaleLanguage.getInstance().translateKey(nms.getItem().getName()) : null;
}
// Paper end