3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00
Paper/patches/api/0227-Zombie-API-breaking-doors.patch

42 Zeilen
1.7 KiB
Diff

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
2024-10-25 17:08:48 +02:00
index c1a5b625ea602d751a8026d989882c60e80756c9..0a7d4d3f776a72b345d746c583e4c32267929b54 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
@@ -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
2024-10-25 17:08:48 +02:00
@@ -162,5 +164,17 @@ 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);
+
+ /**
+ * 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.
+ *
+ * @return true if entity supports breaking doors
2024-10-25 17:08:48 +02:00
+ * @deprecated Since 1.21.2 all zombie types can break doors if instructed as MC-137053 was fixed.
+ */
2024-10-25 17:08:48 +02:00
+ @Deprecated(since = "1.21.2", forRemoval = true)
+ boolean supportsBreakingDoors();
2021-06-11 14:02:28 +02:00
// Paper end
}