mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 02:42:14 +01:00
36f34f01c0
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: da9ef3c5 #496: Add methods to get/set ItemStacks in EquipmentSlots 3abebc9f #492: Let Tameable extend Animals rather than Entity 941111a0 #495: Expose ItemStack and hand used in PlayerShearEntityEvent 4fe19cae #494: InventoryView - Add missing Brewing FUEL_TIME CraftBukkit Changes:933e9094
#664: Add methods to get/set ItemStacks in EquipmentSlots18722312
#662: Expose ItemStack and hand used in PlayerShearEntityEvent
67 lines
1.8 KiB
Diff
67 lines
1.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Sun, 7 Oct 2018 04:29:51 -0500
|
|
Subject: [PATCH] Add more Zombie API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Zombie.java b/src/main/java/org/bukkit/entity/Zombie.java
|
|
index 6dcac979820b1460e8693b6a330876bc1ffdfffc..fa7a43c3517af455d197308d2e952ea40622349c 100644
|
|
--- a/src/main/java/org/bukkit/entity/Zombie.java
|
|
+++ b/src/main/java/org/bukkit/entity/Zombie.java
|
|
@@ -86,4 +86,55 @@ public interface Zombie extends Monster {
|
|
* @param time new conversion time
|
|
*/
|
|
void setConversionTime(int time);
|
|
+ // Paper start
|
|
+ /**
|
|
+ * Check if zombie is drowning
|
|
+ *
|
|
+ * @return True if zombie conversion process has begun
|
|
+ */
|
|
+ boolean isDrowning();
|
|
+
|
|
+ /**
|
|
+ * Make zombie start drowning
|
|
+ *
|
|
+ * @param drownedConversionTime Amount of time until zombie converts from drowning
|
|
+ *
|
|
+ * @deprecated See {@link #setConversionTime(int)}
|
|
+ */
|
|
+ @Deprecated
|
|
+ void startDrowning(int drownedConversionTime);
|
|
+
|
|
+ /**
|
|
+ * Stop a zombie from starting the drowning conversion process
|
|
+ */
|
|
+ void stopDrowning();
|
|
+
|
|
+ /**
|
|
+ * Set if zombie has its arms raised
|
|
+ *
|
|
+ * @param raised True to raise arms
|
|
+ */
|
|
+ void setArmsRaised(boolean raised);
|
|
+
|
|
+ /**
|
|
+ * Check if zombie has arms raised
|
|
+ *
|
|
+ * @return True if arms are raised
|
|
+ */
|
|
+ boolean isArmsRaised();
|
|
+
|
|
+ /**
|
|
+ * Check if this zombie will burn in the sunlight
|
|
+ *
|
|
+ * @return True if zombie will burn in sunlight
|
|
+ */
|
|
+ boolean shouldBurnInDay();
|
|
+
|
|
+ /**
|
|
+ * Set if this zombie should burn in the sunlight
|
|
+ *
|
|
+ * @param shouldBurnInDay True to burn in sunlight
|
|
+ */
|
|
+ void setShouldBurnInDay(boolean shouldBurnInDay);
|
|
+ // Paper end
|
|
}
|