From bf573ddfd9e9cfd7eab99ab9b0189bb30545bda3 Mon Sep 17 00:00:00 2001 From: fall <66188216+kumquat-ir@users.noreply.github.com> Date: Sun, 10 Nov 2024 13:23:53 -0800 Subject: [PATCH] don't generate ABS recipes with > 9 dusts (#79) --- .../api/recipes/alloyblast/AlloyBlastRecipeProducer.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/gregicality/multiblocks/api/recipes/alloyblast/AlloyBlastRecipeProducer.java b/src/main/java/gregicality/multiblocks/api/recipes/alloyblast/AlloyBlastRecipeProducer.java index 4d70f51..d0aedbe 100644 --- a/src/main/java/gregicality/multiblocks/api/recipes/alloyblast/AlloyBlastRecipeProducer.java +++ b/src/main/java/gregicality/multiblocks/api/recipes/alloyblast/AlloyBlastRecipeProducer.java @@ -98,11 +98,14 @@ protected int addInputs(@NotNull Material material, @NotNull RecipeBuilder= 9) return -1; // more than 9 dusts won't fit in the machine + dustAmount++; builder.input(OrePrefix.dust, msMat, msAmount); } else if (msMat.hasProperty(PropertyKey.FLUID)) { if (fluidAmount >= 2) return -1; // more than 2 fluids won't fit in the machine