From 7878e3bc249652a197ab63edb71861b571cec745 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 --- .../0168-Add-ItemStack-Recipe-API-helper-methods.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-API-Patches/0168-Add-ItemStack-Recipe-API-helper-methods.patch b/Spigot-API-Patches/0168-Add-ItemStack-Recipe-API-helper-methods.patch index 45525648c7..8cfa41b84e 100644 --- a/Spigot-API-Patches/0168-Add-ItemStack-Recipe-API-helper-methods.patch +++ b/Spigot-API-Patches/0168-Add-ItemStack-Recipe-API-helper-methods.patch @@ -34,7 +34,7 @@ index 84062dd719cb8a6142dc8c806777cb208c6b42b2..ddcf84e6609abe8379cca2ff99983ce3 + // Paper start + @NotNull + public ShapelessRecipe addIngredient(@NotNull ItemStack item) { -+ return addIngredient(1, item); ++ return addIngredient(item.getAmount(), item); + } + + @NotNull