From 6116576bf3be35409636f7e245c7ecec063dab3e Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Fri, 3 Aug 2018 16:25:21 +0300 Subject: [PATCH] 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 }