2019-12-16 03:58:10 +01:00
|
|
|
From 830ab876589f4b0530f6f74cca373507111f8497 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
|
2019-12-16 03:58:10 +01:00
|
|
|
index 87c6b77ce3..53c6c33892 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
|
2019-08-26 16:25:58 +02:00
|
|
|
@@ -207,7 +207,7 @@ public class EntityExperienceOrb extends Entity {
|
2018-08-03 06:07:02 +02:00
|
|
|
public void b(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
|
|
|
}
|
|
|
|
|
2019-08-26 16:25:58 +02:00
|
|
|
@@ -215,7 +215,7 @@ public class EntityExperienceOrb extends Entity {
|
2018-08-03 06:07:02 +02:00
|
|
|
public void a(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
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-12-16 03:58:10 +01:00
|
|
|
2.24.1
|
2018-08-03 06:07:02 +02:00
|
|
|
|