From dbf1b4bf7046a3425b6c9131e50e46722cd6d46d Mon Sep 17 00:00:00 2001 From: Sun <22406854+SunTheCourier@users.noreply.github.com> Date: Sat, 7 Nov 2020 14:10:03 -0800 Subject: [PATCH] Use setAmount for Recipe Amount --- .../Add-ItemStack-Recipe-API-helper-methods.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-API-Patches/Add-ItemStack-Recipe-API-helper-methods.patch b/Spigot-API-Patches/Add-ItemStack-Recipe-API-helper-methods.patch index f17fe5329f..1b37c4b71e 100644 --- a/Spigot-API-Patches/Add-ItemStack-Recipe-API-helper-methods.patch +++ b/Spigot-API-Patches/Add-ItemStack-Recipe-API-helper-methods.patch @@ -34,7 +34,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + // Paper start + @NotNull + public ShapelessRecipe addIngredient(@NotNull ItemStack item) { -+ return addIngredient(1, item); ++ return addIngredient(item.getAmount(), item); + } + + @NotNull