diff options
| author | Glease <4586901+Glease@users.noreply.github.com> | 2022-03-14 14:21:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-14 07:21:25 +0100 |
| commit | 34a94189cf413164d2364dad26325688bc8128e6 (patch) | |
| tree | 1e36040a988261d9fd95e5098fc2e49095c88a8e /src/main/java/gregtech/api/enums | |
| parent | bb924f35d8e8c9ce58f5667e2df03ac02a4215b0 (diff) | |
| download | GT5-Unofficial-34a94189cf413164d2364dad26325688bc8128e6.tar.gz GT5-Unofficial-34a94189cf413164d2364dad26325688bc8128e6.tar.bz2 GT5-Unofficial-34a94189cf413164d2364dad26325688bc8128e6.zip | |
save config late (#982)
Diffstat (limited to 'src/main/java/gregtech/api/enums')
| -rw-r--r-- | src/main/java/gregtech/api/enums/GT_Values.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index a02699d8e1..e41eafab78 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -223,7 +223,7 @@ public class GT_Values { * Whether or not to place small ores as placer ores for an orevein */ public static boolean oreveinPlacerOres; - /** + /** * Multiplier to control how many placer ores get generated. */ public static int oreveinPlacerOresMultiplier; @@ -231,18 +231,18 @@ public class GT_Values { * How wide to look for oreveins that affect a requested chunk. Trying to use oreveins larger than this will not work correctly. Increasing the size will cause additional worldgenerator lag. * Disabled for now, using 64 in Deep Dark, 32 elsewhere */ - // public static int oreveinMaxSize; + // public static int oreveinMaxSize; /** * Not really Constants, but they set using the Config and therefore should be constant (those are for the Debug Mode) */ public static boolean D1 = false, D2 = false; /** * Debug parameter for cleanroom testing. - */ + */ public static boolean debugCleanroom = false; /** * Debug parameter for driller testing. - */ + */ public static boolean debugDriller = false; /** * Debug parameter for world generation. Tracks chunks added/removed from run queue. @@ -306,7 +306,7 @@ public class GT_Values { public static boolean cls_enabled; public static final Set<String> mCTMEnabledBlock = new HashSet<>(); public static final Set<String> mCTMDisabledBlock = new HashSet<>(); - + public static boolean hideAssLineRecipes = false; public static boolean updateFluidDisplayItems = true; public static final int STEAM_PER_WATER = 160; @@ -314,4 +314,6 @@ public class GT_Values { * If true, then digital chest with AE2 storage bus will be accessible only through AE2 */ public static boolean disableDigitalChestsExternalAccess = false; + public static boolean lateConfigSave = true; + public static boolean worldTickHappened = false; } |
