Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 717eefb

Browse files
committed
fix forestry recipe compat crash
closes #34
1 parent 8e8625a commit 717eefb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/gregification/modules/forestry/recipes/CombRecipes.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import gregtech.api.GTValues;
3434
import gregtech.api.recipes.RecipeBuilder;
3535
import gregtech.api.recipes.RecipeMaps;
36-
import gregtech.api.recipes.ingredients.IntCircuitIngredient;
3736
import gregtech.api.unification.OreDictUnifier;
3837
import gregtech.api.unification.material.Material;
3938
import gregtech.api.unification.material.Materials;
@@ -336,7 +335,7 @@ private static void addAutoclaveProcess(GTCombType comb, Material material, Volt
336335

337336
RecipeBuilder<?> builder = RecipeMaps.AUTOCLAVE_RECIPES.recipeBuilder()
338337
.inputs(GTUtility.copyAmount(9, ForestryUtils.getCombStack(comb)))
339-
.notConsumable(new IntCircuitIngredient(circuitNumber))
338+
.circuitMeta(circuitNumber)
340339
.fluidInputs(Materials.UUMatter.getFluid((int) Math.max(1, ((material.getMass() + volt.getUUAmount()) / 10))))
341340
.output(OrePrefix.crushedPurified, material, 4)
342341
.duration((int) (material.getMass() * 128))

0 commit comments

Comments
 (0)