2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Thu, 2 Jul 2020 18:11:33 -0500
|
|
|
|
Subject: [PATCH] Add entity liquid API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
|
2024-04-06 22:38:37 +02:00
|
|
|
index 11a77f977c6abc031cf5a4d58924bc7af5e7ea53..3deccdf110c2cb74444b5d715082fbbdaa8f20ce 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Entity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Entity.java
|
2024-04-06 22:38:37 +02:00
|
|
|
@@ -848,5 +848,40 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
2021-06-11 14:02:28 +02:00
|
|
|
*/
|
|
|
|
@NotNull
|
|
|
|
org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason getEntitySpawnReason();
|
|
|
|
+
|
|
|
|
+ /**
|
2022-10-11 14:43:10 +02:00
|
|
|
+ * Check if entity is underwater
|
|
|
|
+ */
|
|
|
|
+ boolean isUnderWater();
|
|
|
|
+
|
|
|
|
+ /**
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * Check if entity is in rain
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInRain();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Check if entity is in bubble column
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInBubbleColumn();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Check if entity is in water or rain
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInWaterOrRain();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Check if entity is in water or bubble column
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInWaterOrBubbleColumn();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Check if entity is in water or rain or bubble column
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInWaterOrRainOrBubbleColumn();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Check if entity is in lava
|
|
|
|
+ */
|
2022-10-11 14:43:10 +02:00
|
|
|
+ boolean isInLava();
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper end
|
|
|
|
}
|