2019-07-20 04:01:24 +00:00
|
|
|
From 639efcb00e1ca46a92d1ac3b84ba20c10f04a4ba Mon Sep 17 00:00:00 2001
|
2018-06-29 04:55:29 +00: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
|
2019-07-20 04:01:24 +00:00
|
|
|
index c2634f8813..b29e0c5d35 100644
|
2018-06-29 04:55:29 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-04-30 01:20:24 +00:00
|
|
|
@@ -109,7 +109,7 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
private float bD;
|
|
|
|
private int jumpTicks;
|
|
|
|
private float bF;
|
2018-07-22 05:27:46 +00:00
|
|
|
- protected ItemStack activeItem;
|
|
|
|
+ public ItemStack activeItem; // Paper - public
|
2019-04-30 01:20:24 +00:00
|
|
|
protected int bo;
|
|
|
|
protected int bp;
|
|
|
|
private BlockPosition bG;
|
2019-05-27 23:01:45 +00:00
|
|
|
@@ -2899,10 +2899,12 @@ public abstract class EntityLiving extends Entity {
|
2018-06-29 04:55:29 +00:00
|
|
|
return this.activeItem;
|
|
|
|
}
|
|
|
|
|
2019-07-20 04:01:24 +00:00
|
|
|
+ public int getItemUseRemainingTime() { return this.dm(); } // Paper - OBFHELPER
|
|
|
|
public int dm() {
|
2019-04-30 01:20:24 +00:00
|
|
|
return this.bo;
|
2018-06-29 04:55:29 +00:00
|
|
|
}
|
|
|
|
|
2019-07-20 04:01:24 +00:00
|
|
|
+ public int getHandRaisedTime() { return this.dn(); } // Paper - OBFHELPER
|
|
|
|
public int dn() {
|
|
|
|
return this.isHandRaised() ? this.activeItem.k() - this.dm() : 0;
|
2018-06-29 04:55:29 +00:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2019-07-20 04:01:24 +00:00
|
|
|
index 513b3fac7f..8dea7d36b6 100644
|
2018-06-29 04:55:29 +00:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2019-05-22 04:14:56 +00:00
|
|
|
@@ -629,5 +629,25 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2018-06-29 04:55:29 +00:00
|
|
|
public void setShieldBlockingDelay(int delay) {
|
|
|
|
getHandle().setShieldBlockingDelay(delay);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ItemStack getActiveItem() {
|
2018-07-22 05:27:46 +00:00
|
|
|
+ return getHandle().activeItem.asBukkitMirror();
|
2018-06-29 04:55:29 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getItemUseRemainingTime() {
|
|
|
|
+ return getHandle().getItemUseRemainingTime();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getHandRaisedTime() {
|
|
|
|
+ return getHandle().getHandRaisedTime();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean isHandRaised() {
|
|
|
|
+ return getHandle().isHandRaised();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-06-25 01:47:58 +00:00
|
|
|
2.22.0
|
2018-06-29 04:55:29 +00:00
|
|
|
|