diff options
Diffstat (limited to 'patches/api/0377-Add-entity-knockback-API.patch')
-rw-r--r-- | patches/api/0377-Add-entity-knockback-API.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/patches/api/0377-Add-entity-knockback-API.patch b/patches/api/0377-Add-entity-knockback-API.patch new file mode 100644 index 0000000000..b8c91440f6 --- /dev/null +++ b/patches/api/0377-Add-entity-knockback-API.patch @@ -0,0 +1,29 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: MelnCat <[email protected]> +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 +index 51d3bc142bcd3b349326ae2553660abcf19a2638..6bfc8a2148f504370df938447f4f6b757f1a516b 100644 +--- a/src/main/java/org/bukkit/entity/LivingEntity.java ++++ b/src/main/java/org/bukkit/entity/LivingEntity.java +@@ -1351,4 +1351,18 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource + } + } + // Paper end - swing hand API ++ ++ // Paper start - knockback API ++ /** ++ * 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 - knockback API + } |