Skip to content

Commit

Permalink
Fixed some config path names
Browse files Browse the repository at this point in the history
  • Loading branch information
JackyyTV committed Jul 8, 2023
1 parent 81071ff commit 819eb67
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/java/jackyy/exchangers/registry/ModConfigs.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,57 +281,57 @@ public static class CommonConfig {
builder.push("ender_io_tweaks");
copperAlloyMaxEnergy = builder
.comment("Set the energy capacity for Copper Alloy Exchanger")
.defineInRange("copperAlloyMaxEnergy", DefaultValues.copperALloyMaxEnergy, 1000, Integer.MAX_VALUE);
.defineInRange("copperAlloyExchangerMaxEnergy", DefaultValues.copperALloyMaxEnergy, 1000, Integer.MAX_VALUE);
copperAlloyPerBlockUse = builder
.comment("Set the energy consumption per block for Copper Alloy Exchanger")
.defineInRange("copperAlloyPerBlockUse", DefaultValues.copperAlloyPerBlockUse, 1, Integer.MAX_VALUE);
.defineInRange("copperAlloyExchangerPerBlockUse", DefaultValues.copperAlloyPerBlockUse, 1, Integer.MAX_VALUE);
copperAlloyMaxHarvestLevel = builder
.comment(
"Set the max harvest level for Copper Alloy Exchanger",
"Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite",
"For modded values, please check the tool tiers for the mod that you want to use",
"Entering an incorrect value will result in the Exchanger using the default value to prevent crashes"
)
.define("copperAlloyMaxHarvestLevel", DefaultValues.copperAlloyMaxHarvestLevel);
.define("copperAlloyExchangerMaxHarvestLevel", DefaultValues.copperAlloyMaxHarvestLevel);
copperAlloyMaxRange = builder
.comment("Set the max range for Copper Alloy Exchanger")
.defineInRange("copperAlloyMaxRange", DefaultValues.copperALloyMaxRange, 0, 12);
.defineInRange("copperAlloyExchangerMaxRange", DefaultValues.copperALloyMaxRange, 0, 12);

conductiveMaxEnergy = builder
.comment("Set the energy capacity for Conductive Exchanger")
.defineInRange("conductiveMaxEnergy", DefaultValues.conductiveMaxEnergy, 1000, Integer.MAX_VALUE);
.defineInRange("conductiveExchangerMaxEnergy", DefaultValues.conductiveMaxEnergy, 1000, Integer.MAX_VALUE);
conductivePerBlockUse = builder
.comment("Set the energy consumption per block for Conductive Exchanger")
.defineInRange("conductivePerBlockUse", DefaultValues.conductivePerBlockUse, 1, Integer.MAX_VALUE);
.defineInRange("conductiveExchangerPerBlockUse", DefaultValues.conductivePerBlockUse, 1, Integer.MAX_VALUE);
conductiveMaxHarvestLevel = builder
.comment(
"Set the max harvest level for Conductive Exchanger",
"Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite",
"For modded values, please check the tool tiers for the mod that you want to use",
"Entering an incorrect value will result in the Exchanger using the default value to prevent crashes"
)
.define("conductiveMaxHarvestLevel", DefaultValues.conductiveMaxHarvestLevel);
.define("conductiveExchangerMaxHarvestLevel", DefaultValues.conductiveMaxHarvestLevel);
conductiveMaxRange = builder
.comment("Set the max range for Conductive Exchanger")
.defineInRange("conductiveMaxRange", DefaultValues.conductiveMaxRange, 0, 12);
.defineInRange("conductiveExchangerMaxRange", DefaultValues.conductiveMaxRange, 0, 12);

pulsatingMaxEnergy = builder
.comment("Set the energy capacity for Pulsating Exchanger")
.defineInRange("pulsatingMaxEnergy", DefaultValues.pulsatingMaxEnergy, 1000, Integer.MAX_VALUE);
.defineInRange("pulsatingExchangerMaxEnergy", DefaultValues.pulsatingMaxEnergy, 1000, Integer.MAX_VALUE);
pulsatingPerBlockUse = builder
.comment("Set the energy consumption per block for Pulsating Exchanger")
.defineInRange("pulsatingPerBlockUse", DefaultValues.pulsatingPerBlockUse, 1, Integer.MAX_VALUE);
.defineInRange("pulsatingExchangerPerBlockUse", DefaultValues.pulsatingPerBlockUse, 1, Integer.MAX_VALUE);
pulsatingMaxHarvestLevel = builder
.comment(
"Set the max harvest level for Pulsating Exchanger",
"Valid Vanilla values are: minecraft:wood, minecraft:stone, minecraft:iron, minecraft:diamond, minecraft:netherite",
"For modded values, please check the tool tiers for the mod that you want to use",
"Entering an incorrect value will result in the Exchanger using the default value to prevent crashes"
)
.define("pulsatingMaxHarvestLevel", DefaultValues.pulsatingMaxHarvestLevel);
.define("pulsatingExchangerMaxHarvestLevel", DefaultValues.pulsatingMaxHarvestLevel);
pulsatingMaxRange = builder
.comment("Set the max range for Pulsating Exchanger")
.defineInRange("pulsatingMaxRange", DefaultValues.pulsatingMaxRange, 0, 12);
.defineInRange("pulsatingExchangerMaxRange", DefaultValues.pulsatingMaxRange, 0, 12);

energeticMaxEnergy = builder
.comment("Set the energy capacity for Energetic Exchanger")
Expand Down

0 comments on commit 819eb67

Please sign in to comment.