Skip to content

Commit

Permalink
Merge pull request #157 from Thorfusion/155-bug-tank-capacityrate-con…
Browse files Browse the repository at this point in the history
…fig-options-no-longer-exist

hotfix for 155 bug tank capacityrate config options no longer exist
  • Loading branch information
maggi373 committed Jan 24, 2024
2 parents 5703612 + 3feecdd commit f6cf196
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ FMP_version=1.2.0.345
CCLIB_version=1.1.3.141
NEI_version=1.0.5.120
CCC_version=1.0.7.48
mod_version=9.10.33
alt_version=9, 10, 33
mod_version=9.10.34
alt_version=9, 10, 34
2 changes: 1 addition & 1 deletion src/main/java/mekanism/api/MekanismConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public static class recipes
public static boolean enableChemicalInfuser = true;
public static boolean enableChemicalInjection = true;
public static boolean enableElectrolyticSeparator = true;
public static boolean enableElectroliticCore = true;
public static boolean enableElectroliticCore = true;
public static boolean enableCardboardBox = true;
public static boolean enableSawdusttoPaper = true;
public static boolean enablePrecisionSawmill = true;
Expand Down
8 changes: 5 additions & 3 deletions src/main/java/mekanism/common/Mekanism.java
Original file line number Diff line number Diff line change
Expand Up @@ -1380,13 +1380,15 @@ public void preInit(FMLPreInitializationEvent event)
configurationrecipes = new Configuration(new File("config/mekanism/MekanismRecipes.cfg"));
configurationce = new Configuration(new File("config/mekanism/MekanismCE.cfg"));

//Load configuration
proxy.loadConfiguration();
proxy.onConfigSync(false);


//Register tier information
Tier.init();

//Load configuration
proxy.loadConfiguration();
proxy.onConfigSync(false);

GasRegistry.register(new Gas("hydrogen")).registerFluid();
GasRegistry.register(new Gas("oxygen")).registerFluid();
GasRegistry.register(new Gas("water")).registerFluid();
Expand Down

0 comments on commit f6cf196

Please sign in to comment.