From 90f1059bae911966b5629b3ec1ff242d109fde7f Mon Sep 17 00:00:00 2001 From: md_5 Date: Thu, 25 Apr 2024 18:18:59 +1000 Subject: [PATCH] Fix item placement --- nms-patches/net/minecraft/world/item/ItemStack.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nms-patches/net/minecraft/world/item/ItemStack.patch b/nms-patches/net/minecraft/world/item/ItemStack.patch index 674145653..8d97c3b08 100644 --- a/nms-patches/net/minecraft/world/item/ItemStack.patch +++ b/nms-patches/net/minecraft/world/item/ItemStack.patch @@ -144,7 +144,7 @@ + + if (!fertilizeEvent.isCancelled()) { + // Change the stack to its new contents if it hasn't been tampered with. -+ if (this.getCount() == oldCount && Objects.equals(this.components, oldData)) { ++ if (this.getCount() == oldCount && Objects.equals(this.components.asPatch(), oldData)) { + this.restorePatch(newData); + this.setCount(newCount); + } @@ -191,7 +191,7 @@ + ItemSign.openSign = null; // SPIGOT-6758 - Reset on early return + } else { + // Change the stack to its new contents if it hasn't been tampered with. -+ if (this.getCount() == oldCount && Objects.equals(this.components, oldData)) { ++ if (this.getCount() == oldCount && Objects.equals(this.components.asPatch(), oldData)) { + this.restorePatch(newData); + this.setCount(newCount); + }