mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 19:00:16 +01:00
40 lines
1.6 KiB
Diff
40 lines
1.6 KiB
Diff
|
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
|
||
|
index f9110f682ddc356299ff94e1e536f8e5024378d8..646ea844ed2cf674569937653f9920e4fdbf62a0 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||
|
@@ -311,7 +311,28 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
||
|
Preconditions.checkArgument(count >= 0, "New arrow amount must be >= 0");
|
||
|
this.getHandle().getEntityData().set(net.minecraft.world.entity.LivingEntity.DATA_ARROW_COUNT_ID, count);
|
||
|
}
|
||
|
+ // Paper Start - Bee Stinger API
|
||
|
+ @Override
|
||
|
+ public int getBeeStingerCooldown() {
|
||
|
+ return getHandle().removeStingerTime;
|
||
|
+ }
|
||
|
+
|
||
|
+ @Override
|
||
|
+ public void setBeeStingerCooldown(int ticks) {
|
||
|
+ getHandle().removeStingerTime = ticks;
|
||
|
+ }
|
||
|
|
||
|
+ @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);
|
||
|
+ }
|
||
|
+ // Paper End - Bee Stinger API
|
||
|
@Override
|
||
|
public void damage(double amount) {
|
||
|
this.damage(amount, null);
|