2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Wed, 18 Nov 2020 11:32:15 -0800
|
|
|
|
Subject: [PATCH] Zombie API - breaking doors
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Zombie.java b/src/main/java/org/bukkit/entity/Zombie.java
|
2022-07-22 20:18:00 +02:00
|
|
|
index 227560e04854088d162b4b6ed4cd1503d55c3200..bb4f55f7d42d9789737f4b83974993aa166ca950 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Zombie.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Zombie.java
|
2022-07-22 20:18:00 +02:00
|
|
|
@@ -100,8 +100,10 @@ public interface Zombie extends Monster, Ageable {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether this zombie can break doors
|
|
|
|
- *
|
|
|
|
- * This will be ignored if the entity is a Drowned. Will also stop the action if
|
|
|
|
+ * <p>
|
|
|
|
+ * Check {@link #supportsBreakingDoors()} to see
|
|
|
|
+ * if this zombie type will even be affected by using
|
|
|
|
+ * this method. Will also stop the action if
|
|
|
|
* the entity is currently breaking a door.
|
|
|
|
*
|
|
|
|
* @param flag Whether this zombie can break doors
|
|
|
|
@@ -158,5 +160,15 @@ public interface Zombie extends Monster, Ageable {
|
2021-06-11 14:02:28 +02:00
|
|
|
* @param shouldBurnInDay True to burn in sunlight
|
|
|
|
*/
|
|
|
|
void setShouldBurnInDay(boolean shouldBurnInDay);
|
|
|
|
+
|
|
|
|
+ /**
|
2021-11-06 01:17:12 +01:00
|
|
|
+ * Checks if this zombie type supports breaking doors.
|
|
|
|
+ * {@link Drowned} do not have support for breaking doors
|
|
|
|
+ * so using {@link #setCanBreakDoors(boolean)} on them has
|
|
|
|
+ * no effect.
|
|
|
|
+ *
|
2022-07-22 20:18:00 +02:00
|
|
|
+ * @return true if entity supports breaking doors
|
2021-11-06 01:17:12 +01:00
|
|
|
+ */
|
|
|
|
+ boolean supportsBreakingDoors();
|
2021-06-11 14:02:28 +02:00
|
|
|
// Paper end
|
|
|
|
}
|