2022-10-16 13:49:56 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: SoSeDiK <mrsosedik@gmail.com>
|
|
|
|
Date: Tue, 11 Oct 2022 22:35:56 +0300
|
|
|
|
Subject: [PATCH] Add LivingEntity#swingHand(EquipmentSlot) convenience method
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-04-12 21:14:06 +02:00
|
|
|
index be9fa1b6209a41712767283c6329046ca2795c09..35b0eb94e291dae7a4705fa85b10d23fcd38f49e 100644
|
2022-10-16 13:49:56 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-04-06 23:44:27 +02:00
|
|
|
@@ -1329,4 +1329,24 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2023-03-14 23:13:41 +01:00
|
|
|
@Deprecated
|
2022-10-16 13:49:56 +02:00
|
|
|
void setHurtDirection(float hurtDirection);
|
2024-04-06 21:53:39 +02:00
|
|
|
// Paper end - hurt direction API
|
2022-10-16 13:49:56 +02:00
|
|
|
+
|
2024-04-06 21:53:39 +02:00
|
|
|
+ // Paper start - swing hand API
|
2022-10-16 13:49:56 +02:00
|
|
|
+ /**
|
|
|
|
+ * Makes this entity swing their hand.
|
|
|
|
+ *
|
|
|
|
+ * <p>This method does nothing if this entity does not
|
|
|
|
+ * have an animation for swinging their hand.
|
|
|
|
+ *
|
|
|
|
+ * @param hand hand to be swung, either {@link org.bukkit.inventory.EquipmentSlot#HAND} or {@link org.bukkit.inventory.EquipmentSlot#OFF_HAND}
|
|
|
|
+ * @throws IllegalArgumentException if invalid hand is passed
|
|
|
|
+ */
|
|
|
|
+ default void swingHand(@NotNull org.bukkit.inventory.EquipmentSlot hand) {
|
2022-10-23 01:50:12 +02:00
|
|
|
+ com.google.common.base.Preconditions.checkArgument(hand != null && hand.isHand(), String.format("Expected a valid hand, got \"%s\" instead!", hand));
|
2022-10-16 13:49:56 +02:00
|
|
|
+ if (hand == org.bukkit.inventory.EquipmentSlot.HAND) {
|
|
|
|
+ this.swingMainHand();
|
|
|
|
+ } else {
|
|
|
|
+ this.swingOffHand();
|
|
|
|
+ }
|
|
|
|
+ }
|
2024-04-06 21:53:39 +02:00
|
|
|
+ // Paper end - swing hand API
|
2022-10-16 13:49:56 +02:00
|
|
|
}
|