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-02-16 23:44:38 +01:00
|
|
|
index 8a01590cc0ee7517dc4c2a52e95aad2680610a43..4d6d75387b9a3ec467982e17a5131cd10f302260 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-02-16 23:44:38 +01:00
|
|
|
@@ -842,5 +842,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
|
|
|
|
}
|