geforkt von Mirrors/Paper
Expose isUnderWater to Entity (#8454)
Dieser Commit ist enthalten in:
Ursprung
5afab91756
Commit
9ff21585db
@ -14,33 +14,38 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason getEntitySpawnReason();
|
org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason getEntitySpawnReason();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
|
+ * Check if entity is underwater
|
||||||
|
+ */
|
||||||
|
+ boolean isUnderWater();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
+ * Check if entity is in rain
|
+ * Check if entity is in rain
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInRain();
|
+ boolean isInRain();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is in bubble column
|
+ * Check if entity is in bubble column
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInBubbleColumn();
|
+ boolean isInBubbleColumn();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is in water or rain
|
+ * Check if entity is in water or rain
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInWaterOrRain();
|
+ boolean isInWaterOrRain();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is in water or bubble column
|
+ * Check if entity is in water or bubble column
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInWaterOrBubbleColumn();
|
+ boolean isInWaterOrBubbleColumn();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is in water or rain or bubble column
|
+ * Check if entity is in water or rain or bubble column
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInWaterOrRainOrBubbleColumn();
|
+ boolean isInWaterOrRainOrBubbleColumn();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is in lava
|
+ * Check if entity is in lava
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isInLava();
|
+ boolean isInLava();
|
||||||
// Paper end
|
// Paper end
|
||||||
}
|
}
|
||||||
|
@ -11,11 +11,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
@@ -0,0 +0,0 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
@@ -0,0 +0,0 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
||||||
* Check if entity is in lava
|
* Check if entity is in lava
|
||||||
*/
|
*/
|
||||||
public boolean isInLava();
|
boolean isInLava();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Check if entity is inside a ticking chunk
|
+ * Check if entity is inside a ticking chunk
|
||||||
+ */
|
+ */
|
||||||
+ public boolean isTicking();
|
+ boolean isTicking();
|
||||||
// Paper end
|
// Paper end
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
@@ -0,0 +0,0 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
@@ -0,0 +0,0 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
||||||
* Check if entity is inside a ticking chunk
|
* Check if entity is inside a ticking chunk
|
||||||
*/
|
*/
|
||||||
public boolean isTicking();
|
boolean isTicking();
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
+ * Returns a set of {@link Player Players} within this entity's tracking range (players that can "see" this entity).
|
+ * Returns a set of {@link Player Players} within this entity's tracking range (players that can "see" this entity).
|
||||||
|
@ -13,26 +13,37 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
return getHandle().spawnReason;
|
return getHandle().spawnReason;
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public boolean isUnderWater() {
|
||||||
|
+ return getHandle().isUnderWater();
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInRain() {
|
+ public boolean isInRain() {
|
||||||
+ return getHandle().isInRain();
|
+ return getHandle().isInRain();
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInBubbleColumn() {
|
+ public boolean isInBubbleColumn() {
|
||||||
+ return getHandle().isInBubbleColumn();
|
+ return getHandle().isInBubbleColumn();
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInWaterOrRain() {
|
+ public boolean isInWaterOrRain() {
|
||||||
+ return getHandle().isInWaterOrRain();
|
+ return getHandle().isInWaterOrRain();
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInWaterOrBubbleColumn() {
|
+ public boolean isInWaterOrBubbleColumn() {
|
||||||
+ return getHandle().isInWaterOrBubble();
|
+ return getHandle().isInWaterOrBubble();
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInWaterOrRainOrBubbleColumn() {
|
+ public boolean isInWaterOrRainOrBubbleColumn() {
|
||||||
+ return getHandle().isInWaterRainOrBubble();
|
+ return getHandle().isInWaterRainOrBubble();
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isInLava() {
|
+ public boolean isInLava() {
|
||||||
+ return getHandle().isInLava();
|
+ return getHandle().isInLava();
|
||||||
+ }
|
+ }
|
||||||
|
@ -8,21 +8,13 @@ diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/jav
|
|||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
@@ -0,0 +0,0 @@ import net.minecraft.resources.ResourceKey;
|
|
||||||
import net.minecraft.resources.ResourceLocation;
|
|
||||||
import net.minecraft.server.MCUtil;
|
|
||||||
import net.minecraft.server.MinecraftServer;
|
|
||||||
+import net.minecraft.server.level.ServerChunkCache;
|
|
||||||
import net.minecraft.server.level.ServerLevel;
|
|
||||||
import net.minecraft.server.level.ServerPlayer;
|
|
||||||
import net.minecraft.server.level.TicketType;
|
|
||||||
@@ -0,0 +0,0 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
@@ -0,0 +0,0 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
||||||
public static int nextEntityId() {
|
public static int nextEntityId() {
|
||||||
return ENTITY_COUNTER.incrementAndGet();
|
return ENTITY_COUNTER.incrementAndGet();
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
+ public boolean isTicking() {
|
+ public boolean isTicking() {
|
||||||
+ return ((ServerChunkCache) level.getChunkSource()).isPositionTicking(this);
|
+ return ((net.minecraft.server.level.ServerChunkCache) level.getChunkSource()).isPositionTicking(this);
|
||||||
+ }
|
+ }
|
||||||
// Paper end
|
// Paper end
|
||||||
}
|
}
|
||||||
@ -35,6 +27,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
return getHandle().isInLava();
|
return getHandle().isInLava();
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
|
+ @Override
|
||||||
+ public boolean isTicking() {
|
+ public boolean isTicking() {
|
||||||
+ return getHandle().isTicking();
|
+ return getHandle().isTicking();
|
||||||
+ }
|
+ }
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren