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
|
|
|
|
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/EntityExperienceOrb.java b/src/main/java/net/minecraft/world/entity/EntityExperienceOrb.java
|
|
|
|
index dc257a7cafc4b728aa5c99ca332143bb05896d7e..c1fa9437015a554ee875d4d2948dfcc2c8353f12 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/EntityExperienceOrb.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/EntityExperienceOrb.java
|
|
|
|
@@ -217,7 +217,7 @@ public class EntityExperienceOrb extends Entity {
|
2020-06-25 16:09:55 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-03-16 08:19:45 +01:00
|
|
|
@@ -225,7 +225,7 @@ public class EntityExperienceOrb extends Entity {
|
2020-06-25 16:09:55 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|