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:17 -0700
|
|
|
|
Subject: [PATCH] Add entity knockback API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2023-11-11 22:04:34 +01:00
|
|
|
index b6723468156cf500e6ae3def456e1d82589ab4ee..8924dc5c5291fdd8557eca95a5ae7d4a204cd3e7 100644
|
2022-10-18 09:33:58 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2023-11-11 22:04:34 +01:00
|
|
|
@@ -1032,5 +1032,11 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2022-10-18 09:33:58 +02:00
|
|
|
}
|
|
|
|
throw new IllegalArgumentException(entityCategory + " is an unrecognized entity category");
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void knockback(double strength, double directionX, double directionZ) {
|
|
|
|
+ Preconditions.checkArgument(strength > 0, "Knockback strength must be > 0");
|
|
|
|
+ getHandle().knockback(strength, directionX, directionZ);
|
|
|
|
+ };
|
|
|
|
// Paper end
|
|
|
|
}
|