Skip to content

Commit ed8bfef

Browse files
authored
Remove arbitrary restriction on casings per craft (#2729)
1 parent 200779f commit ed8bfef

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/java/gregtech/common/ConfigHolder.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,11 @@ public static class RecipeOptions {
270270
@Config.Comment({ "Whether to make the recipe for the EBF Controller harder.", "Default: false" })
271271
public boolean harderEBFControllerRecipe = false;
272272

273-
@Config.Comment({ "How many Multiblock Casings to make per craft. Either 1, 2, or 3.", "Default: 2" })
274-
@Config.RangeInt(min = 1, max = 3)
273+
@Config.Comment({
274+
"How many Multiblock Casings to make per craft. Must be greater than 0 and fit in a stack.",
275+
"'Normal' values would be 1, 2, or 3.",
276+
"Default: 2" })
277+
@Config.RangeInt(min = 1, max = 64)
275278
public int casingsPerCraft = 2;
276279

277280
@Config.Comment({

0 commit comments

Comments
 (0)