diff options
Diffstat (limited to 'patches/api/0206-Add-playPickupItemAnimation-to-LivingEntity.patch')
-rw-r--r-- | patches/api/0206-Add-playPickupItemAnimation-to-LivingEntity.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/patches/api/0206-Add-playPickupItemAnimation-to-LivingEntity.patch b/patches/api/0206-Add-playPickupItemAnimation-to-LivingEntity.patch new file mode 100644 index 0000000000..8530c705f9 --- /dev/null +++ b/patches/api/0206-Add-playPickupItemAnimation-to-LivingEntity.patch @@ -0,0 +1,40 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: William Blake Galbreath <[email protected]> +Date: Sun, 23 Aug 2020 19:36:08 +0200 +Subject: [PATCH] Add playPickupItemAnimation to LivingEntity + + +diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java +index d134a7406e3960e12e811085257a1e0052abb499..c71bc11f7a0a72d4e5d609e333ab99031ea813d2 100644 +--- a/src/main/java/org/bukkit/entity/LivingEntity.java ++++ b/src/main/java/org/bukkit/entity/LivingEntity.java +@@ -1171,4 +1171,29 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource + */ + void setJumping(boolean jumping); + // Paper end - entity jump API ++ ++ // Paper start - pickup animation API ++ /** ++ * Plays pickup item animation towards this entity. ++ * <p> ++ * <b>This will remove the item on the client.</b> ++ * <p> ++ * Quantity is inferred to be that of the {@link Item}. ++ * ++ * @param item item to pickup ++ */ ++ default void playPickupItemAnimation(@NotNull Item item) { ++ playPickupItemAnimation(item, item.getItemStack().getAmount()); ++ } ++ ++ /** ++ * Plays pickup item animation towards this entity. ++ * <p> ++ * <b>This will remove the item on the client.</b> ++ * ++ * @param item item to pickup ++ * @param quantity quantity of item ++ */ ++ void playPickupItemAnimation(@NotNull Item item, int quantity); ++ // Paper end - pickup animation API + } |