From 34a94189cf413164d2364dad26325688bc8128e6 Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Mon, 14 Mar 2022 14:21:25 +0800 Subject: save config late (#982) --- src/main/java/gregtech/api/enums/GT_Values.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/main/java/gregtech/api/enums') 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 mCTMEnabledBlock = new HashSet<>(); public static final Set 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; } -- cgit