aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch')
-rw-r--r--patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch13
1 files changed, 7 insertions, 6 deletions
diff --git a/patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch b/patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch
index c7055de757..84a2b07d42 100644
--- a/patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch
+++ b/patches/server/0412-Add-playPickupItemAnimation-to-LivingEntity.patch
@@ -5,17 +5,18 @@ Subject: [PATCH] Add playPickupItemAnimation to LivingEntity
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
-index c4db692fb5d952e4d185067388fd46ed0e1f1537..e07553c3ee28a2510c46a8188c8ce507f2567c80 100644
+index 8cfa39acde6d32625ae87e9d031d8dc767783e61..e54b164ea2f28cdbb89166fb9b0b9cd9d12c0ca9 100644
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
-@@ -949,5 +949,10 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
- ((Mob) getHandle()).getJumpControl().jump();
+@@ -977,4 +977,11 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
}
}
+ // Paper end - entity jump API
+
++ // Paper start - pickup animation API
+ @Override
-+ public void playPickupItemAnimation(org.bukkit.entity.Item item, int quantity) {
-+ getHandle().take(((CraftItem) item).getHandle(), quantity);
++ public void playPickupItemAnimation(final org.bukkit.entity.Item item, final int quantity) {
++ this.getHandle().take(((CraftItem) item).getHandle(), quantity);
+ }
- // Paper end
++ // Paper end - pickup animation API
}