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

30 lines
979 B
Diff
Raw Normal View History

From 93c339952640cc2620a03bb3e0b0f1c55c74413b 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 61732ae8d..601265fb5 100644
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
@@ -1207,6 +1207,15 @@ public class CraftWorld implements World {
return list;
}
+ // Paper start - getEntity by UUID API
2019-05-06 04:58:04 +02: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 04:58:04 +02:00
@Override
public void save() {
2019-04-30 03:20:24 +02:00
this.server.checkSaveState();
--
2.22.0