mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 02:42:14 +01:00
b170e8cedb
Remove two features added upstream
48 lines
1.5 KiB
Diff
48 lines
1.5 KiB
Diff
From 1ec57a41072c805aeeb8efb10cac8b4738cb4aab Mon Sep 17 00:00:00 2001
|
|
From: DemonWav <demonwav@gmail.com>
|
|
Date: Wed, 30 Mar 2016 01:19:51 -0500
|
|
Subject: [PATCH] Add getEntity by UUID API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
|
index b01cd7d..3161b87 100644
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
|
@@ -1189,6 +1189,16 @@ public final class Bukkit {
|
|
public static void reloadPermissions() {
|
|
server.reloadPermissions();
|
|
}
|
|
+
|
|
+ /**
|
|
+ * Find an entity on the server by its UUID
|
|
+ *
|
|
+ * @param uuid The UUID of the entity
|
|
+ * @return The entity that is identified by the given UUID, or null if one isn't found
|
|
+ */
|
|
+ public static Entity getEntity(UUID uuid) {
|
|
+ return server.getEntity(uuid);
|
|
+ }
|
|
// Paper end
|
|
|
|
public static Server.Spigot spigot()
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
|
index b527372..edf0d04 100644
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
|
@@ -1020,4 +1020,12 @@ public interface Server extends PluginMessageRecipient {
|
|
Spigot spigot();
|
|
|
|
void reloadPermissions(); // Paper
|
|
+
|
|
+ /**
|
|
+ * Find an entity on the server by its UUID
|
|
+ *
|
|
+ * @param uuid The UUID of the entity
|
|
+ * @return The entity that is identified by the given UUID, or null if one isn't found
|
|
+ */
|
|
+ Entity getEntity(UUID uuid); // Paper
|
|
}
|
|
--
|
|
2.9.2.windows.1
|
|
|