From 14cfae341719e03342f32f848b1c6aa52aac3df2 Mon Sep 17 00:00:00 2001 From: spessbro <51048066+spessbro@users.noreply.github.com> Date: Sun, 5 Mar 2023 23:02:19 -0500 Subject: [PATCH] Changes the minimum number High temperature casings on the ABS Going from 30 to 20 so that it's easier to use the new alloy smelter recipes with multiple hatches --- .../multiblock/standard/MetaTileEntityAlloyBlastSmelter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/gregicality/multiblocks/common/metatileentities/multiblock/standard/MetaTileEntityAlloyBlastSmelter.java b/src/main/java/gregicality/multiblocks/common/metatileentities/multiblock/standard/MetaTileEntityAlloyBlastSmelter.java index 4b47ffc9..cf99f27c 100644 --- a/src/main/java/gregicality/multiblocks/common/metatileentities/multiblock/standard/MetaTileEntityAlloyBlastSmelter.java +++ b/src/main/java/gregicality/multiblocks/common/metatileentities/multiblock/standard/MetaTileEntityAlloyBlastSmelter.java @@ -102,7 +102,7 @@ protected BlockPattern createStructurePattern() { .aisle("XXXXX", "CAAAC", "GAAAG", "CAAAC", "XXXXX") .aisle("#XSX#", "#CCC#", "#GGG#", "#CCC#", "#XXX#") .where('S', selfPredicate()) - .where('X', states(getCasingState()).setMinGlobalLimited(30).or(autoAbilities(true, true, true, true, true, true, false))) + .where('X', states(getCasingState()).setMinGlobalLimited(20).or(autoAbilities(true, true, true, true, true, true, false))) .where('C', heatingCoils()) .where('G', states(getCasingState2())) .where('M', abilities(MultiblockAbility.MUFFLER_HATCH))