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

30 lines
1,008 B
Diff
Raw Normal View History

From b8d16f5bd4c542d07b85f6b59001a8f98555a543 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 c31737d35..022eefc67 100644
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
@@ -1267,6 +1267,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.24.1