@@ -11,17 +11,21 @@ public class GTEConfigHolder {
1111
1212 @ Config .Name ("GTExpert-Core Options" )
1313 @ Config .RequiresMcRestart
14- public static final GTEFlag gteFlag = new GTEFlag ();
15-
16- @ Config .Name ("GTExpert-Core Feature Options" )
17- @ Config .RequiresMcRestart
18- public static final GTEFeatureFlag gteFeatureFlag = new GTEFeatureFlag ();
14+ public static final ModpackFlag gteFlag = new ModpackFlag ();
1915
2016 @ Config .Name ("Gregtech Override" )
2117 @ Config .RequiresMcRestart
2218 public static final GregtechOverride ceuOverride = new GregtechOverride ();
2319
24- public static class GTEFlag {
20+ public static class ModpackFlag {
21+
22+ @ Config .Comment ({ "Activate changes in the replacement schedule." ,
23+ "1. When enabled, the following structure and mte name changes: " ,
24+ "Large Cracking Unit" ,
25+ "2. When enabled, the recipe of the following items will be changed: " ,
26+ "Logic Processor, Calc Processor, Engineer Processor" ,
27+ "Default: false" })
28+ public boolean featureFlag = false ;
2529
2630 @ Config .Comment ({ "Item name to be CEu standard instead of Primitive" ,
2731 "Options: true (ULV), false (Primitive)" ,
@@ -51,40 +55,16 @@ public static class GTEFlag {
5155 public boolean peacefulFlag = false ;
5256 }
5357
54- public static class GTEFeatureFlag {
55-
56- @ Config .Comment ({ "Activate changes in the replacement schedule." ,
57- "1. When enabled, the following structure and mte name changes: " ,
58- "Large Cracking Unit" ,
59- "1. When enabled, the following mte name changes: " ,
60- "Advanced Gas Collector -> Large Gas Collector" ,
61- "Default: false" })
62- public boolean migrationMachine = false ;
63-
64- @ Config .Comment ({ "Activate machines under development." ,
65- "Default: false" })
66- public boolean previewMachines = false ;
67-
68- @ Config .Comment ({ "Activate items under development." ,
69- "Default: false" })
70- public boolean previewItems = false ;
71- }
72-
7358 public static class GregtechOverride {
7459
75- @ Config .Comment ({ "Making Planks even more difficult." ,
76- "CEu's hardWoodRecipes & nerfWoodCrafting to true to reflect." , "Default: false" })
77- public boolean moreNerfPlankCrafting = false ;
78-
79- @ Config .Comment ({ "Making Sticks even more difficult." ,
80- "CEu's harderRods to true to reflect." , "Default: false" })
81- public boolean moreNerfStickCrafting = false ;
82-
8360 @ Config .Comment ({ "Change to a recipe using Assembly Line." ,
8461 "CEu's enableHighTierSolars to true to reflect." , "Default: false" })
8562 public boolean hardSolarPanel = false ;
8663
8764 @ Config .Comment ({ "Raising Terracotta Grinding from ULV to MV." , "Default: false" })
8865 public boolean nerfTerracottaCrafting = false ;
66+
67+ @ Config .Comment ({ "Disable auto eat function of QuarkTech helmet" , "Default: true" })
68+ public boolean disableHelmetAutoEat = true ;
8969 }
9070}
0 commit comments