1
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-22 19:49:23 +01:00

SPIGOT-5222: Cannot get Long values from Entity memory

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-07-29 16:37:40 +10:00
parent 481703c1b4
commit 1513ec9ccc

View File

@ -2,6 +2,7 @@ package org.bukkit.craftbukkit.entity.memory;
import net.minecraft.server.BlockPosition;
import net.minecraft.server.GlobalPos;
import net.minecraft.server.MinecraftSerializableLong;
import org.bukkit.Bukkit;
import org.bukkit.Location;
import org.bukkit.craftbukkit.CraftServer;
@ -14,8 +15,8 @@ public final class CraftMemoryMapper {
public static Object fromNms(Object object) {
if (object instanceof GlobalPos) {
return fromNms((GlobalPos) object);
} else if (object instanceof Long) {
return object;
} else if (object instanceof MinecraftSerializableLong) {
return ((MinecraftSerializableLong) object).a();
}
throw new UnsupportedOperationException("Do not know how to map " + object);
@ -27,7 +28,7 @@ public final class CraftMemoryMapper {
} else if (object instanceof Location) {
return toNms((Location) object);
} else if (object instanceof Long) {
return object;
return MinecraftSerializableLong.a((Long) object);
}
throw new UnsupportedOperationException("Do not know how to map " + object);