2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-08-03 06:07:02 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
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/server/EntityExperienceOrb.java b/src/main/java/net/minecraft/server/EntityExperienceOrb.java
|
2020-11-18 04:45:18 +01:00
|
|
|
index 4df7df781d12e38885ecfbc89dd1d42d9de14248..c2be0c2bc315876f120cff207e5516dda2bd55d7 100644
|
2018-08-03 06:07:02 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityExperienceOrb.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityExperienceOrb.java
|
2020-06-25 16:09:55 +02:00
|
|
|
@@ -202,7 +202,7 @@ public class EntityExperienceOrb extends Entity {
|
|
|
|
public void saveData(NBTTagCompound nbttagcompound) {
|
2019-05-05 04:23:25 +02:00
|
|
|
nbttagcompound.setShort("Health", (short) this.e);
|
|
|
|
nbttagcompound.setShort("Age", (short) this.c);
|
2018-08-03 06:07:02 +02:00
|
|
|
- nbttagcompound.setShort("Value", (short) this.value);
|
2018-08-03 15:25:21 +02:00
|
|
|
+ nbttagcompound.setInt("Value", this.value); // Paper - save as Integer
|
2019-05-05 04:23:25 +02:00
|
|
|
this.savePaperNBT(nbttagcompound); // Paper
|
2018-08-03 06:07:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 16:09:55 +02:00
|
|
|
@@ -210,7 +210,7 @@ public class EntityExperienceOrb extends Entity {
|
|
|
|
public void loadData(NBTTagCompound nbttagcompound) {
|
2019-05-05 04:23:25 +02:00
|
|
|
this.e = nbttagcompound.getShort("Health");
|
|
|
|
this.c = nbttagcompound.getShort("Age");
|
2018-08-03 06:07:02 +02:00
|
|
|
- this.value = nbttagcompound.getShort("Value");
|
|
|
|
+ this.value = nbttagcompound.getInt("Value"); // Paper - load as Integer
|
2019-05-05 04:23:25 +02:00
|
|
|
this.loadPaperNBT(nbttagcompound); // Paper
|
2018-08-03 06:07:02 +02:00
|
|
|
}
|
|
|
|
|