Skip to content

Commit

Permalink
fix inaccurate config comments for lead ore generation and add option…
Browse files Browse the repository at this point in the history
… to enable nether ores, use .defineInRange instead of .define
  • Loading branch information
OakBricks-old committed Jul 27, 2021
1 parent 4a7c673 commit 5084ac4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public final class OakOresConfig {

BUILDER.push("Config for OakOres - Purpi Gen");

purpiVeinSize = BUILDER.comment("Size of a Purpi Ore vein, default value is 6.").worldRestart().define("Purpi Ore Vein Size", 6);
purpiVeinSize = BUILDER.comment("Size of a Purpi Ore vein, default value is 6.").worldRestart().defineInRange("Purpi Ore Vein Size", 6, 1, 32);
purpiMinHeight = BUILDER.comment("Minimum height for Purpi Ore to generate in a world, default value is 5.").worldRestart().define("Purpi Ore Minimum Height", 5);
purpiMaxHeight = BUILDER.comment("Maximum height for Purpi Ore to generate in a world, default value is 28.").worldRestart().define("Purpi Ore Maximum Height", 28);
purpiAmount = BUILDER.comment("Amount of Purpi Ore in a world, default value is 10").worldRestart().define("Purpi Ore Amount", 10);
Expand Down

0 comments on commit 5084ac4

Please sign in to comment.