geforkt von Mirrors/Paper
1718f61bf8
Doesn't compile yet. CraftBukkit Changes: 90d6905b Repackage NMS 69cf961d Repackage patches Spigot Changes: 79d53c28 Repackage NMS
29 Zeilen
1.4 KiB
Diff
29 Zeilen
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
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/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 {
|
|
public void saveData(NBTTagCompound nbttagcompound) {
|
|
nbttagcompound.setShort("Health", (short) this.e);
|
|
nbttagcompound.setShort("Age", (short) this.c);
|
|
- nbttagcompound.setShort("Value", (short) this.value);
|
|
+ nbttagcompound.setInt("Value", this.value); // Paper - save as Integer
|
|
this.savePaperNBT(nbttagcompound); // Paper
|
|
}
|
|
|
|
@@ -225,7 +225,7 @@ public class EntityExperienceOrb extends Entity {
|
|
public void loadData(NBTTagCompound nbttagcompound) {
|
|
this.e = nbttagcompound.getShort("Health");
|
|
this.c = nbttagcompound.getShort("Age");
|
|
- this.value = nbttagcompound.getShort("Value");
|
|
+ this.value = nbttagcompound.getInt("Value"); // Paper - load as Integer
|
|
this.loadPaperNBT(nbttagcompound); // Paper
|
|
}
|
|
|