2019-08-05 18:35:40 +02:00
|
|
|
From ea688d4a7f14a44362f33e207c455d5bdf1a9181 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
|
2019-08-05 18:35:40 +02:00
|
|
|
index dfbd40a997..e1972f7935 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-04-30 03:20:24 +02:00
|
|
|
@@ -109,7 +109,7 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
private float bD;
|
|
|
|
private int jumpTicks;
|
|
|
|
private float bF;
|
2018-07-22 07:27:46 +02:00
|
|
|
- protected ItemStack activeItem;
|
|
|
|
+ public ItemStack activeItem; // Paper - public
|
2019-04-30 03:20:24 +02:00
|
|
|
protected int bo;
|
|
|
|
protected int bp;
|
|
|
|
private BlockPosition bG;
|
2019-08-05 18:35:40 +02:00
|
|
|
@@ -2900,10 +2900,12 @@ public abstract class EntityLiving extends Entity {
|
2018-06-29 06:55:29 +02:00
|
|
|
return this.activeItem;
|
|
|
|
}
|
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
+ public int getItemUseRemainingTime() { return this.dm(); } // Paper - OBFHELPER
|
|
|
|
public int dm() {
|
2019-04-30 03:20:24 +02:00
|
|
|
return this.bo;
|
2018-06-29 06:55:29 +02:00
|
|
|
}
|
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
+ public int getHandRaisedTime() { return this.dn(); } // Paper - OBFHELPER
|
|
|
|
public int dn() {
|
|
|
|
return this.isHandRaised() ? this.activeItem.k() - this.dm() : 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
|
2019-08-05 18:35:40 +02:00
|
|
|
index 06cc48a1dc..0610d0d5c0 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
|
2019-05-22 06:14:56 +02:00
|
|
|
@@ -629,5 +629,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
|
|
|
|
}
|
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2018-06-29 06:55:29 +02:00
|
|
|
|