diff options
author | Maxime Legkiy <maix@yandex.ru> | 2017-02-17 01:55:54 +0300 |
---|---|---|
committer | Maxime Legkiy <maix@yandex.ru> | 2017-02-17 01:55:54 +0300 |
commit | 8e2280bc2c700a04ae5b829fe79eba4ba95a22d3 (patch) | |
tree | c4054aa7eda6744f2ba3511e40a40760b7bca4c4 /src/main/java/gregtech/GT_Mod.java | |
parent | 901a7d66c1766b3f21de4f74e696a30e5d178018 (diff) | |
download | GT5-Unofficial-8e2280bc2c700a04ae5b829fe79eba4ba95a22d3.tar.gz GT5-Unofficial-8e2280bc2c700a04ae5b829fe79eba4ba95a22d3.tar.bz2 GT5-Unofficial-8e2280bc2c700a04ae5b829fe79eba4ba95a22d3.zip |
Fix name config category to UndergroundFluid
Fix comments configuration
Fix Start config - add nether and end to BlackList. Default spawn fluids on overworld and Moon.
Add Decrease Per Operation Amount (if 0 an endless source)
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 8e9502047b..ef0635bc2d 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -46,13 +46,13 @@ import net.minecraft.util.WeightedRandomChestContent; import net.minecraft.world.World;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraftforge.common.ChestGenHooks;
-import net.minecraftforge.common.DimensionManager;
import net.minecraftforge.common.config.Configuration;
import net.minecraftforge.fluids.FluidContainerRegistry;
import net.minecraftforge.fluids.FluidRegistry;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.oredict.OreDictionary;
import org.apache.commons.lang3.StringUtils;
+
import java.io.*;
import java.util.*;
import java.util.regex.Matcher;
@@ -253,7 +253,7 @@ public class GT_Mod implements IGT_Mod { gregtechproxy.mPollutionSourRainLimit = tMainConfig.get("Pollution", "SourRainLimit", 2000000).getInt(2000000);
gregtechproxy.mExplosionItemDrop = tMainConfig.get("general", "ExplosionItemDrops", false).getBoolean(false);
gregtechproxy.mAddGTRecipesToIC2Machines = tMainConfig.get("general", "AddGTRecipesToIC2Machines", true).getBoolean(true);
- gregtechproxy.mUndergroundOil.getConfig(tMainConfig, "undergroundoil");
+ gregtechproxy.mUndergroundOil.getConfig(tMainConfig, "undergroundfluid");
GregTech_API.mOutputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "OutputRF", true);
GregTech_API.mInputRF = GregTech_API.sOPStuff.get(ConfigCategories.general, "InputRF", false);
@@ -803,7 +803,6 @@ public class GT_Mod implements IGT_Mod { }
}
achievements = new GT_Achievements();
-
GT_Log.out.println("GT_Mod: Loading finished, deallocating temporary Init Variables.");
GregTech_API.sBeforeGTPreload = null;
GregTech_API.sAfterGTPreload = null;
@@ -956,7 +955,6 @@ public class GT_Mod implements IGT_Mod { GT_OreDictUnificator.setStack(tOutput);
}
}
-
GregTech_API.mServerStarted = true;
GT_Log.out.println("GT_Mod: ServerStarting-Phase finished!");
GT_Log.ore.println("GT_Mod: ServerStarting-Phase finished!");
|