2022-10-18 09:33:58 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: MelnCat <melncatuwu@gmail.com>
|
|
|
|
Date: Sun, 16 Oct 2022 12:10:00 -0700
|
|
|
|
Subject: [PATCH] Add entity knockback API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-02-09 21:56:13 +01:00
|
|
|
index d0ceef72c2691c441739a0100cb68504cbb3220e..798bcc0fe7d21179df885d30d8e0dc7d6eee3b40 100644
|
2022-10-18 09:33:58 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-02-09 21:56:13 +01:00
|
|
|
@@ -1219,5 +1219,17 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2022-10-18 09:33:58 +02:00
|
|
|
this.swingOffHand();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Knocks back this entity from a specific direction with a specified strength. Mechanics such
|
|
|
|
+ * as knockback resistance will be factored in.
|
|
|
|
+ *
|
|
|
|
+ * The direction specified in this method will be the direction of the source of the knockback,
|
|
|
|
+ * so the entity will be pushed in the opposite direction.
|
|
|
|
+ * @param strength The strength of the knockback. Must be greater than 0.
|
|
|
|
+ * @param directionX The relative x position of the knockback source direction
|
|
|
|
+ * @param directionZ The relative z position of the knockback source direction
|
|
|
|
+ */
|
|
|
|
+ void knockback(double strength, double directionX, double directionZ);
|
|
|
|
// Paper end
|
|
|
|
}
|