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:15:44 -0400
|
|
|
|
Subject: [PATCH] Stinger API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2024-10-23 20:50:46 +02:00
|
|
|
index 00db6ba96bda7ceaae8bc69a6b3a42e7a3929485..9870222cc1c46bcc37f9d3d44881606f2b9d038e 100644
|
2021-07-29 02:36:53 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2024-10-23 20:50:46 +02:00
|
|
|
@@ -384,6 +384,39 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|
|
|
public boolean isInvulnerable() {
|
|
|
|
return this.getHandle().isInvulnerableTo((ServerLevel) this.getHandle().level(), this.getHandle().damageSources().generic());
|
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
|
|
|
+ @Override
|
|
|
|
+ public int getBeeStingerCooldown() {
|
|
|
|
+ return getHandle().removeStingerTime;
|
|
|
|
+ }
|
2024-10-23 20:50:46 +02:00
|
|
|
+
|
2021-07-29 02:36:53 +02:00
|
|
|
+ @Override
|
|
|
|
+ public void setBeeStingerCooldown(int ticks) {
|
|
|
|
+ getHandle().removeStingerTime = ticks;
|
|
|
|
+ }
|
2024-02-09 21:56:13 +01:00
|
|
|
+
|
2021-07-29 02:36:53 +02:00
|
|
|
+ @Override
|
|
|
|
+ public int getBeeStingersInBody() {
|
|
|
|
+ return getHandle().getStingerCount();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setBeeStingersInBody(int count) {
|
|
|
|
+ Preconditions.checkArgument(count >= 0, "New bee stinger amount must be >= 0");
|
|
|
|
+ getHandle().setStingerCount(count);
|
|
|
|
+ }
|
2024-02-09 21:56:13 +01:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setNextBeeStingerRemoval(final int ticks) {
|
|
|
|
+ Preconditions.checkArgument(ticks >= 0, "New amount of ticks before next bee stinger removal must be >= 0");
|
|
|
|
+ this.getHandle().removeStingerTime = ticks;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getNextBeeStingerRemoval() {
|
|
|
|
+ return this.getHandle().removeStingerTime;
|
|
|
|
+ }
|
2024-01-19 22:13:42 +01:00
|
|
|
+ // Paper end - Bee Stinger API
|
2024-10-23 20:50:46 +02:00
|
|
|
|
2021-07-29 02:36:53 +02:00
|
|
|
@Override
|
|
|
|
public void damage(double amount) {
|