diff --git a/patches/server/0901-Restore-vanilla-entity-drops-behavior.patch b/patches/server/0901-Restore-vanilla-entity-drops-behavior.patch index 9bc5b11cbd8d..49d59cda83f2 100644 --- a/patches/server/0901-Restore-vanilla-entity-drops-behavior.patch +++ b/patches/server/0901-Restore-vanilla-entity-drops-behavior.patch @@ -231,7 +231,7 @@ index b6c30bb70fb4746da024bc4d80b71aeb3558f101..1c87019f5eb8e51accef3dc7ee949cdf - victim.spawnAtLocation(victim.serverLevel(), CraftItemStack.asNMSCopy(stack)); // SPIGOT-7806: Vanilla Behaviour for items not related to Player Inventory dropped items - victim.forceDrops = false; - } -+ drop.runConsumer(s -> victim.drop(CraftItemStack.unwrap(s), true, false, false)); // Paper - Restore vanilla drops behavior ++ drop.runConsumer(s -> victim.drop(CraftItemStack.asNMSCopy(s), true, false, false)); // Paper - Restore vanilla drops behavior } return event;