2021-07-29 02:36:53 +02:00
|
|
|
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
|
2024-04-12 21:14:06 +02:00
|
|
|
index 5d62d7393dde2ccf56e9c09d44e17fdde79cf760..be9fa1b6209a41712767283c6329046ca2795c09 100644
|
2021-07-29 02:36:53 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-04-06 21:53:39 +02:00
|
|
|
@@ -451,6 +451,52 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2024-02-09 21:56:13 +01:00
|
|
|
int getNextArrowRemoval();
|
|
|
|
// Paper end - Add methods for working with arrows stuck in living entities
|
2021-07-29 02:36:53 +02:00
|
|
|
|
2024-01-19 22:13:42 +01:00
|
|
|
+ // Paper start - Bee Stinger API
|
2021-07-29 02:36:53 +02:00
|
|
|
+ /**
|
|
|
|
+ * 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);
|
2024-02-09 21:56:13 +01:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the amount of ticks before the next bee stinger gets removed from the entities body.
|
|
|
|
+ * <p>
|
|
|
|
+ * A value of 0 will cause the server to re-calculate the amount of ticks on the next tick.
|
|
|
|
+ *
|
|
|
|
+ * @param ticks Amount of ticks
|
|
|
|
+ */
|
|
|
|
+ void setNextBeeStingerRemoval(@org.jetbrains.annotations.Range(from = 0, to = Integer.MAX_VALUE) int ticks);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the amount of ticks before the next bee stinger gets removed from the entities body.
|
|
|
|
+ *
|
|
|
|
+ * @return ticks Amount of ticks
|
|
|
|
+ */
|
|
|
|
+ int getNextBeeStingerRemoval();
|
2024-01-19 22:13:42 +01:00
|
|
|
+ // Paper end - Stinger API
|
2021-07-29 02:36:53 +02:00
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Returns the living entity's current maximum no damage ticks.
|
|
|
|
* <p>
|