Add Owner UUID api for AreaEffectCloud (#9364)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
||||
Date: Fri, 28 May 2021 21:06:59 -0400
|
||||
Subject: [PATCH] Missing Entity Behavior API
|
||||
Subject: [PATCH] Missing Entity API
|
||||
|
||||
Co-authored-by: Nassim Jahnke <nassim@njahnke.dev>
|
||||
Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
@@ -151,6 +151,31 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ public void setEating(boolean eating);
|
||||
+ // Paper end - Horse API
|
||||
}
|
||||
diff --git a/src/main/java/org/bukkit/entity/AreaEffectCloud.java b/src/main/java/org/bukkit/entity/AreaEffectCloud.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/entity/AreaEffectCloud.java
|
||||
+++ b/src/main/java/org/bukkit/entity/AreaEffectCloud.java
|
||||
@@ -0,0 +0,0 @@ public interface AreaEffectCloud extends Entity {
|
||||
* @param source the {@link ProjectileSource} that threw the LingeringPotion
|
||||
*/
|
||||
public void setSource(@Nullable ProjectileSource source);
|
||||
+
|
||||
+ // Paper start - owner API
|
||||
+ /**
|
||||
+ * Get the entity UUID for the owner of this area effect cloud.
|
||||
+ *
|
||||
+ * @return the entity owner uuid or null
|
||||
+ */
|
||||
+ @Nullable java.util.UUID getOwnerUniqueId();
|
||||
+
|
||||
+ /**
|
||||
+ * Sets the entity UUID for the owner of this area effect cloud.
|
||||
+ *
|
||||
+ * @param ownerUuid the entity owner uuid or null to clear
|
||||
+ */
|
||||
+ void setOwnerUniqueId(@Nullable java.util.UUID ownerUuid);
|
||||
+ // Paper end
|
||||
}
|
||||
diff --git a/src/main/java/org/bukkit/entity/Bat.java b/src/main/java/org/bukkit/entity/Bat.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Bat.java
|
||||
Reference in New Issue
Block a user