Skip to content

Commit

Permalink
changed default eu to fe ratio to match the standard that's existed f…
Browse files Browse the repository at this point in the history
…or years
  • Loading branch information
Trinsdar committed Mar 25, 2024
1 parent 94a7a96 commit b9c3ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/main/java/tesseract/TesseractConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class TesseractConfig {
public static void createConfig(){
Config config = new Config(Tesseract.API_ID);
ConfigSection section = config.add("general");
EU_TO_FE_RATIO = section.addDouble("eu_to_fe_ratio", 8.0, "The ratio of the eu to the fe energy converting - Default: (1.0 EU = 8.0 FE)").setMin(Double.MIN_VALUE);
EU_TO_FE_RATIO = section.addDouble("eu_to_fe_ratio", 4.0, "The ratio of the eu to the fe energy converting - Default: (1.0 EU = 4.0 FE)").setMin(Double.MIN_VALUE);
EU_TO_TRE_RATIO = section.addDouble("eu_to_tre_ratio", 1.0, "The ratio of the eu to the tre energy converting - Default: (1.0 EU = 1.0 TRE)").setMin(Double.MIN_VALUE);
ENABLE_FE_OR_TRE_INPUT = section.addBool("enable_fe_or_tre_input", !TesseractPlatformUtils.INSTANCE.isForge(), "Enables EU Machines and cables being able to input FE or TRE(Tech Reborn Energy),",
"Please do not enable on forge unless you have balanced the fe compat to not be broken af due to power creep. - Default: false on forge, true on fabric");
Expand Down

0 comments on commit b9c3ed7

Please sign in to comment.