Zombie API - breaking doors
This commit is contained in:
parent
5650a41f5e
commit
4a7962cd13
3 changed files with 75 additions and 0 deletions
30
Spigot-API-Patches/0250-Zombie-API-breaking-doors.patch
Normal file
30
Spigot-API-Patches/0250-Zombie-API-breaking-doors.patch
Normal file
|
@ -0,0 +1,30 @@
|
|||
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
|
||||
index 1217576e6f08abf0175ab800cfca058d5deda116..a39fbc9fa0903be8ed8e89f3ef39f93c02dfc90b 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Zombie.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Zombie.java
|
||||
@@ -140,5 +140,19 @@ public interface Zombie extends Monster, Ageable {
|
||||
* @param shouldBurnInDay True to burn in sunlight
|
||||
*/
|
||||
void setShouldBurnInDay(boolean shouldBurnInDay);
|
||||
+
|
||||
+ /**
|
||||
+ * Check if this zombie can break doors
|
||||
+ *
|
||||
+ * @return True if zombie can break doors
|
||||
+ */
|
||||
+ boolean canBreakDoors();
|
||||
+
|
||||
+ /**
|
||||
+ * Sets if this zombie can break doors
|
||||
+ *
|
||||
+ * @param canBreakDoors True if zombie can break doors
|
||||
+ */
|
||||
+ void setCanBreakDoors(boolean canBreakDoors);
|
||||
// Paper end
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue