From 9dde9d710e563fac189a51c118bab97a095e2e8a Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 3 Aug 2018 08:51:04 -0400 Subject: [PATCH 1/2] fix missing | on dupe uuid patch --- Spigot-Server-Patches/Duplicate-UUID-Resolve-Option.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/Duplicate-UUID-Resolve-Option.patch b/Spigot-Server-Patches/Duplicate-UUID-Resolve-Option.patch index b64dc73266..d40e765c6e 100644 --- a/Spigot-Server-Patches/Duplicate-UUID-Resolve-Option.patch +++ b/Spigot-Server-Patches/Duplicate-UUID-Resolve-Option.patch @@ -119,7 +119,7 @@ index 4757081090..8cd2ed85bc 100644 List entityslice = aentityslice[j]; // Spigot + // Paper start + DuplicateUUIDMode mode = world.paperConfig.duplicateUUIDMode; -+ if (mode == DuplicateUUIDMode.WARN | mode == DuplicateUUIDMode.DELETE || mode == DuplicateUUIDMode.REGEN || mode == DuplicateUUIDMode.SAFE_REGEN) { ++ if (mode == DuplicateUUIDMode.WARN || mode == DuplicateUUIDMode.DELETE || mode == DuplicateUUIDMode.REGEN || mode == DuplicateUUIDMode.SAFE_REGEN) { + Map thisChunk = new HashMap<>(); + for (Iterator iterator = ((List) entityslice).iterator(); iterator.hasNext(); ) { + Entity entity = iterator.next(); From 6116576bf3be35409636f7e245c7ecec063dab3e Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Fri, 3 Aug 2018 16:25:21 +0300 Subject: [PATCH 2/2] Fix "MC-135506: Experience should save as Integers" still saving as short" (#1301) --- .../MC-135506-Experience-should-save-as-Integers.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Spigot-Server-Patches/MC-135506-Experience-should-save-as-Integers.patch b/Spigot-Server-Patches/MC-135506-Experience-should-save-as-Integers.patch index f9c9e8467b..318f40bfa4 100644 --- a/Spigot-Server-Patches/MC-135506-Experience-should-save-as-Integers.patch +++ b/Spigot-Server-Patches/MC-135506-Experience-should-save-as-Integers.patch @@ -5,7 +5,7 @@ Subject: [PATCH] MC-135506: Experience should save as Integers diff --git a/src/main/java/net/minecraft/server/EntityExperienceOrb.java b/src/main/java/net/minecraft/server/EntityExperienceOrb.java -index 1c59fd9661..c179fe516e 100644 +index 1c59fd96..becb102c 100644 --- a/src/main/java/net/minecraft/server/EntityExperienceOrb.java +++ b/src/main/java/net/minecraft/server/EntityExperienceOrb.java @@ -0,0 +0,0 @@ public class EntityExperienceOrb extends Entity { @@ -13,7 +13,7 @@ index 1c59fd9661..c179fe516e 100644 nbttagcompound.setShort("Health", (short) this.d); nbttagcompound.setShort("Age", (short) this.b); - nbttagcompound.setShort("Value", (short) this.value); -+ nbttagcompound.setInt("Value", (short) this.value); // Paper - save as Integer ++ nbttagcompound.setInt("Value", this.value); // Paper - save as Integer savePaperNBT(nbttagcompound); // Paper }