Paper/Spigot-Server-Patches/0239-Implement-World.getEntity-UUID-API.patch

30 lines
1,010 B
Diff
Raw Normal View History

From ff38c7b228fbe0093392ed067ae2f8612abd2d8f Mon Sep 17 00:00:00 2001
From: Brokkonaut <hannos17@gmx.de>
Date: Tue, 3 Jul 2018 16:08:14 +0200
Subject: [PATCH] Implement World.getEntity(UUID) API
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
index a16ab1f845..cde999c97f 100644
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
@@ -1293,6 +1293,15 @@ public class CraftWorld implements World {
return list;
}
+ // Paper start - getEntity by UUID API
2019-05-06 02:58:04 +00:00
+ @Override
+ public Entity getEntity(UUID uuid) {
+ Validate.notNull(uuid, "UUID cannot be null");
+ net.minecraft.server.Entity entity = world.getEntity(uuid);
+ return entity == null ? null : entity.getBukkitEntity();
+ }
+ // Paper end
+
2019-05-06 02:58:04 +00:00
@Override
public void save() {
org.spigotmc.AsyncCatcher.catchOp("world save"); // Spigot
--
2.26.2