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