diff --git a/Spigot-API-Patches/Item-no-age-no-player-pickup.patch b/Spigot-API-Patches/Item-no-age-no-player-pickup.patch
new file mode 100644
index 0000000000..7902472671
--- /dev/null
+++ b/Spigot-API-Patches/Item-no-age-no-player-pickup.patch
@@ -0,0 +1,45 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Alfie Smith <alfie@alfiesmith.net>
+Date: Sat, 7 Nov 2020 01:20:27 +0000
+Subject: [PATCH] Item no age & no player pickup
+
+
+diff --git a/src/main/java/org/bukkit/entity/Item.java b/src/main/java/org/bukkit/entity/Item.java
+index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
+--- a/src/main/java/org/bukkit/entity/Item.java
++++ b/src/main/java/org/bukkit/entity/Item.java
+@@ -0,0 +0,0 @@ public interface Item extends Entity {
+      * @param canMobPickup True to allow non-player entity pickup
+      */
+     public void setCanMobPickup(boolean canMobPickup);
++
++    /**
++     * Gets whether the player can pickup the item or not
++     *
++     * @return True if a player can pickup the item
++     */
++    public boolean canPlayerPickup();
++
++    /**
++     * Sets whether the item can be picked up or not. Modifies the pickup delay value to do so.
++     *
++     * @param canPlayerPickup True if the player can pickup the item
++     */
++    public void setCanPlayerPickup(boolean canPlayerPickup);
++
++    /**
++     * Gets whether the item will age and despawn from being on the ground too long
++     *
++     * @return True if the item will age
++     */
++    public boolean willAge();
++
++    /**
++     * Sets whether the item will age or not. If the item is not ageing, it will not despawn
++     * by being on the ground for too long.
++     *
++     * @param willAge True if the item should age
++     */
++    public void setWillAge(boolean willAge);
+     // Paper end
+ }
diff --git a/Spigot-Server-Patches/Item-no-age-no-player-pickup.patch b/Spigot-Server-Patches/Item-no-age-no-player-pickup.patch
new file mode 100644
index 0000000000..287bfb99b2
--- /dev/null
+++ b/Spigot-Server-Patches/Item-no-age-no-player-pickup.patch
@@ -0,0 +1,50 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Alfie Smith <alfie@alfiesmith.net>
+Date: Sat, 7 Nov 2020 01:20:33 +0000
+Subject: [PATCH] Item no age & no player pickup
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftItem.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftItem.java
+index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftItem.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftItem.java
+@@ -0,0 +0,0 @@ import org.bukkit.entity.Item;
+ import org.bukkit.inventory.ItemStack;
+ 
+ public class CraftItem extends CraftEntity implements Item {
++
++    // Paper start
++    private final static int NO_AGE_TIME = (int) Short.MIN_VALUE;
++    private final static int NO_PICKUP_TIME = (int) Short.MAX_VALUE;
++    // Paper end
++
+     private final EntityItem item;
+ 
+     public CraftItem(CraftServer server, Entity entity, EntityItem item) {
+@@ -0,0 +0,0 @@ public class CraftItem extends CraftEntity implements Item {
+     public void setCanMobPickup(boolean canMobPickup) {
+         item.canMobPickup = canMobPickup;
+     }
++
++     @Override
++     public boolean canPlayerPickup() {
++        return item.pickupDelay != NO_PICKUP_TIME;
++     }
++
++     @Override
++     public void setCanPlayerPickup(boolean canPlayerPickup) {
++        item.pickupDelay = canPlayerPickup ? 0 : NO_PICKUP_TIME;
++     }
++
++     @Override
++     public boolean willAge() {
++        return item.age != NO_AGE_TIME;
++     }
++
++     @Override
++     public void setWillAge(boolean willAge) {
++        item.age = willAge ? 0 : NO_AGE_TIME;
++     }
+     // Paper End
+ 
+     @Override