aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0214-Implement-World.getEntity-UUID-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0214-Implement-World.getEntity-UUID-API.patch')
-rw-r--r--patches/server/0214-Implement-World.getEntity-UUID-API.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/patches/server/0214-Implement-World.getEntity-UUID-API.patch b/patches/server/0214-Implement-World.getEntity-UUID-API.patch
new file mode 100644
index 0000000000..23976b68fb
--- /dev/null
+++ b/patches/server/0214-Implement-World.getEntity-UUID-API.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Brokkonaut <[email protected]>
+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 7c11de1cf5c1df6b1658147fe25eb67802c3899f..a50f95940f1992ef6512a79d17b10cf51013f7f0 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+@@ -1034,6 +1034,15 @@ public class CraftWorld extends CraftRegionAccessor implements World {
+ return list;
+ }
+
++ // Paper start - getEntity by UUID API
++ @Override
++ public Entity getEntity(UUID uuid) {
++ Validate.notNull(uuid, "UUID cannot be null");
++ net.minecraft.world.entity.Entity entity = world.getEntity(uuid);
++ return entity == null ? null : entity.getBukkitEntity();
++ }
++ // Paper end
++
+ @Override
+ public void save() {
+ org.spigotmc.AsyncCatcher.catchOp("world save"); // Spigot