aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch')
-rw-r--r--patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch b/patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch
new file mode 100644
index 0000000000..009e8580ee
--- /dev/null
+++ b/patches/server/0236-MC-135506-Experience-should-save-as-Integers.patch
@@ -0,0 +1,28 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Fri, 3 Aug 2018 00:04:54 -0400
+Subject: [PATCH] MC-135506: Experience should save as Integers
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/ExperienceOrb.java b/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
+index 2fead19c1c4b04f94999887b196ceaee025edd99..2d1228670696224452cb432e0279456d8c5fe710 100644
+--- a/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
++++ b/src/main/java/net/minecraft/world/entity/ExperienceOrb.java
+@@ -286,7 +286,7 @@ public class ExperienceOrb extends Entity {
+ public void addAdditionalSaveData(CompoundTag nbt) {
+ nbt.putShort("Health", (short) this.health);
+ nbt.putShort("Age", (short) this.age);
+- nbt.putShort("Value", (short) this.value);
++ nbt.putInt("Value", this.value); // Paper - save as Integer
+ nbt.putInt("Count", this.count);
+ this.savePaperNBT(nbt); // Paper
+ }
+@@ -295,7 +295,7 @@ public class ExperienceOrb extends Entity {
+ public void readAdditionalSaveData(CompoundTag nbt) {
+ this.health = nbt.getShort("Health");
+ this.age = nbt.getShort("Age");
+- this.value = nbt.getShort("Value");
++ this.value = nbt.getInt("Value"); // Paper - load as Integer
+ this.count = Math.max(nbt.getInt("Count"), 1);
+ this.loadPaperNBT(nbt); // Paper
+ }