2020-05-02 00:03:47 +02:00
|
|
|
From 60534734f1dd4b0212c3d4a37511d5b5e493e709 Mon Sep 17 00:00:00 2001
|
2018-06-29 06:55:29 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Fri, 29 Jun 2018 00:21:28 -0400
|
|
|
|
Subject: [PATCH] LivingEntity Hand Raised/Item Use API
|
|
|
|
|
|
|
|
How long an entity has raised hands to charge an attack or use an item
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2020-04-27 09:34:45 +02:00
|
|
|
index c1e6792e0d..a4051c1f0c 100644
|
2018-06-29 06:55:29 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-12-12 00:43:22 +01:00
|
|
|
@@ -112,7 +112,7 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
private float bB;
|
2019-04-30 03:20:24 +02:00
|
|
|
private int jumpTicks;
|
2019-12-12 00:43:22 +01:00
|
|
|
private float bD;
|
2018-07-22 07:27:46 +02:00
|
|
|
- protected ItemStack activeItem;
|
|
|
|
+ public ItemStack activeItem; // Paper - public
|
2019-12-12 00:43:22 +01:00
|
|
|
protected int bl;
|
|
|
|
protected int bm;
|
|
|
|
private BlockPosition bE;
|
2020-04-27 09:34:45 +02:00
|
|
|
@@ -2979,10 +2979,12 @@ public abstract class EntityLiving extends Entity {
|
2018-06-29 06:55:29 +02:00
|
|
|
return this.activeItem;
|
|
|
|
}
|
|
|
|
|
2019-12-12 00:43:22 +01:00
|
|
|
+ public int getItemUseRemainingTime() { return this.dE(); } // Paper - OBFHELPER
|
|
|
|
public int dE() {
|
|
|
|
return this.bl;
|
2018-06-29 06:55:29 +02:00
|
|
|
}
|
|
|
|
|
2019-12-12 00:43:22 +01:00
|
|
|
+ public int getHandRaisedTime() { return this.dF(); } // Paper - OBFHELPER
|
|
|
|
public int dF() {
|
|
|
|
return this.isHandRaised() ? this.activeItem.k() - this.dE() : 0;
|
2018-06-29 06:55:29 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2020-04-27 09:34:45 +02:00
|
|
|
index a8e44e95d6..3a87c6574b 100644
|
2018-06-29 06:55:29 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2020-02-25 19:57:15 +01:00
|
|
|
@@ -654,5 +654,25 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2018-06-29 06:55:29 +02:00
|
|
|
public void setShieldBlockingDelay(int delay) {
|
|
|
|
getHandle().setShieldBlockingDelay(delay);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ItemStack getActiveItem() {
|
2018-07-22 07:27:46 +02:00
|
|
|
+ return getHandle().activeItem.asBukkitMirror();
|
2018-06-29 06:55:29 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getItemUseRemainingTime() {
|
|
|
|
+ return getHandle().getItemUseRemainingTime();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getHandRaisedTime() {
|
|
|
|
+ return getHandle().getHandRaisedTime();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean isHandRaised() {
|
|
|
|
+ return getHandle().isHandRaised();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
--
|
2020-04-27 09:34:45 +02:00
|
|
|
2.26.2
|
2018-06-29 06:55:29 +02:00
|
|
|
|