geforkt von Mirrors/Paper
SPIGOT-5222: Cannot get Long values from Entity memory
Dieser Commit ist enthalten in:
Ursprung
f0b3fe4359
Commit
104b3831f8
@ -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);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren