Prepare for 1.20.3 dev
This commit is contained in:
parent
931781c220
commit
2a1ace0cf2
1514 changed files with 528 additions and 530 deletions
|
@ -1,47 +0,0 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
||||
Date: Tue, 22 Jun 2021 23:16:11 -0400
|
||||
Subject: [PATCH] Stinger API
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||
index b665b99ca6de3a35c3296a500db1527a8513a711..26f12a6e4b2aff8ec052342939435f1ae4c02e2d 100644
|
||||
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||
@@ -399,6 +399,36 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
||||
*/
|
||||
void setArrowsInBody(int count, boolean fireEvent); // Paper
|
||||
|
||||
+ // Paper Start - Bee Stinger API
|
||||
+ /**
|
||||
+ * Gets the time in ticks until the next bee stinger leaves the entity's body.
|
||||
+ *
|
||||
+ * @return ticks until bee stinger leaves
|
||||
+ */
|
||||
+ public int getBeeStingerCooldown();
|
||||
+
|
||||
+ /**
|
||||
+ * Sets the time in ticks until the next stinger leaves the entity's body.
|
||||
+ *
|
||||
+ * @param ticks time until bee stinger leaves
|
||||
+ */
|
||||
+ public void setBeeStingerCooldown(int ticks);
|
||||
+
|
||||
+ /**
|
||||
+ * Gets the amount of bee stingers in an entity's body.
|
||||
+ *
|
||||
+ * @return amount of bee stingers in body
|
||||
+ */
|
||||
+ public int getBeeStingersInBody();
|
||||
+
|
||||
+ /**
|
||||
+ * Set the amount of bee stingers in the entity's body.
|
||||
+ *
|
||||
+ * @param count amount of bee stingers in entity's body
|
||||
+ */
|
||||
+ public void setBeeStingersInBody(int count);
|
||||
+ // Paper End - Stinger API
|
||||
+
|
||||
/**
|
||||
* Returns the living entity's current maximum no damage ticks.
|
||||
* <p>
|
Loading…
Add table
Add a link
Reference in a new issue