geforkt von Mirrors/Paper
a8c28e1920
This branch/commit is only useful to those who purely use a clean Bukkit/Spigot/Paper API and does not use NMS/OBC references. This will let you start updating your plugin to the latest 1.13 builds of Bukkit Preview (4 as of now) Note that this release is not final!!! API breakages may occur! It is up to you if you find use out of this work.
31 Zeilen
964 B
Diff
31 Zeilen
964 B
Diff
From 0db5338a2f3a427e6341c3e7bef58f9ec644a1e7 Mon Sep 17 00:00:00 2001
|
|
From: Brokkonaut <hannos17@gmx.de>
|
|
Date: Tue, 3 Jul 2018 16:07:16 +0200
|
|
Subject: [PATCH] Add World.getEntity(UUID) API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
|
index 2c1056d1..c98349cc 100644
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
+++ b/src/main/java/org/bukkit/World.java
|
|
@@ -714,6 +714,16 @@ public interface World extends PluginMessageRecipient, Metadatable {
|
|
*/
|
|
public Collection<Entity> getNearbyEntities(Location location, double x, double y, double z);
|
|
|
|
+ // Paper start - getEntity by UUID API
|
|
+ /**
|
|
+ * Gets an entity in this world by its UUID
|
|
+ *
|
|
+ * @param uuid the UUID of the entity
|
|
+ * @return the entity with the given UUID, or null if it isn't found
|
|
+ */
|
|
+ public Entity getEntity(UUID uuid);
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Gets the unique name of this world
|
|
*
|
|
--
|
|
2.18.0
|
|
|