3131@ Config (modid = Tags .MOD_ID ,
3232 category = "00_modules" )
3333@ Config .LangKey
34- @ Config .RequiresMcRestart
3534public class ModuleConfig {
3635 @ Config .Comment ({
3736 "Optimizes the way forge scans the classpath during launch." ,
@@ -41,6 +40,7 @@ public class ModuleConfig {
4140 @ Config .LangKey
4241 @ Config .Name (value = "startupOptimizations" , migrations = "STARTUP_OPTIMIZATIONS_V2" )
4342 @ Config .DefaultBoolean (false )
43+ @ Config .RequiresMcRestart
4444 public static boolean STARTUP_OPTIMIZATIONS ;
4545
4646 @ Config .Comment ({
@@ -52,6 +52,7 @@ public class ModuleConfig {
5252 @ Config .LangKey
5353 @ Config .Name (value = "textureOptimizations" , migrations = "" )
5454 @ Config .DefaultBoolean (true )
55+ @ Config .RequiresMcRestart
5556 public static boolean TEXTURE_OPTIMIZATIONS ;
5657
5758 @ Config .Comment ({
@@ -62,6 +63,7 @@ public class ModuleConfig {
6263 @ Config .LangKey ("config.falsetweaks.voxelizer" )
6364 @ Config .Name (value = "voxelizer" , migrations = "" )
6465 @ Config .DefaultBoolean (true )
66+ @ Config .RequiresMcRestart
6567 public static boolean VOXELIZER ;
6668
6769 @ Config .Comment ({
@@ -74,6 +76,7 @@ public class ModuleConfig {
7476 @ Config .LangKey ("config.falsetweaks.triangulator" )
7577 @ Config .Name (value = "triangulator" , migrations = "" )
7678 @ Config .DefaultBoolean (true )
79+ @ Config .RequiresMcRestart
7780 public static boolean TRIANGULATOR ;
7881
7982 @ Config .Comment ({
@@ -84,6 +87,7 @@ public class ModuleConfig {
8487 @ Config .LangKey
8588 @ Config .Name (value = "bspSorting" , migrations = "" )
8689 @ Config .DefaultBoolean (true )
90+ @ Config .RequiresMcRestart
8791 public static boolean BSP_SORTING ;
8892
8993 @ Config .Comment ({
@@ -96,12 +100,14 @@ public class ModuleConfig {
96100 @ Config .LangKey ("config.falsetweaks.item_render_lists" )
97101 @ Config .Name (value = "itemRenderLists" , migrations = "" )
98102 @ Config .DefaultBoolean (true )
103+ @ Config .RequiresMcRestart
99104 public static boolean ITEM_RENDER_LISTS ;
100105
101106 @ Config .Comment ("Disables the Realms button on the main menu." )
102107 @ Config .LangKey
103108 @ Config .Name (value = "noRealmsOnMenu" , migrations = "" )
104109 @ Config .DefaultBoolean (true )
110+ @ Config .RequiresMcRestart
105111 public static boolean NO_REALMS_ON_MENU ;
106112
107113 @ Config .Comment ({
@@ -112,6 +118,7 @@ public class ModuleConfig {
112118 @ Config .LangKey
113119 @ Config .Name (value = "beaconOptimization" , migrations = "" )
114120 @ Config .DefaultBoolean (true )
121+ @ Config .RequiresMcRestart
115122 public static boolean BEACON_OPTIMIZATION ;
116123
117124 @ Config .Comment ({
@@ -122,6 +129,7 @@ public class ModuleConfig {
122129 @ Config .LangKey
123130 @ Config .Name (value = "tileEntityTransparencyFix" , migrations = "" )
124131 @ Config .DefaultBoolean (false )
132+ @ Config .RequiresMcRestart
125133 public static boolean TE_TRANSPARENCY_FIX ;
126134
127135 @ Config .Comment ({
@@ -133,18 +141,21 @@ public class ModuleConfig {
133141 @ Config .LangKey ("config.falsetweaks.translucent_block_layers_fix" )
134142 @ Config .Name (value = "translucentBlockLayersFix" , migrations = "" )
135143 @ Config .DefaultBoolean (false )
144+ @ Config .RequiresMcRestart
136145 public static boolean BLOCK_LAYER_TRANSPARENCY_FIX ;
137146
138147 @ Config .Comment ("Fixes layering issues with particles always rendering behind water." )
139148 @ Config .LangKey
140149 @ Config .Name (value = "particleTransparencyFix" , migrations = "" )
141150 @ Config .DefaultBoolean (true )
151+ @ Config .RequiresMcRestart
142152 public static boolean PARTICLE_TRANSPARENCY_FIX ;
143153
144154 @ Config .Comment ("3D block breaking particles" )
145155 @ Config .LangKey
146156 @ Config .Name (value = "cubicParticles" , migrations = "" )
147157 @ Config .DefaultBoolean (false )
158+ @ Config .RequiresMcRestart
148159 public static boolean CUBIC_PARTICLES ;
149160
150161 @ Config .Comment ({
@@ -156,6 +167,7 @@ public class ModuleConfig {
156167 @ Config .LangKey
157168 @ Config .Name (value = "mipmapFix" , migrations = "" )
158169 @ Config .DefaultBoolean (true )
170+ @ Config .RequiresMcRestart
159171 public static boolean MIPMAP_FIX ;
160172
161173 @ Config .Comment ({
@@ -166,6 +178,7 @@ public class ModuleConfig {
166178 @ Config .LangKey ("config.falsetweaks.profiler" )
167179 @ Config .Name (value = "advancedProfiler" , migrations = "" )
168180 @ Config .DefaultBoolean (true )
181+ @ Config .RequiresMcRestart
169182 public static boolean ADVANCED_PROFILER ;
170183
171184 @ Config .Comment ({
@@ -214,6 +227,7 @@ public class ModuleConfig {
214227 @ Config .LangKey
215228 @ Config .Name (value = "minecartEarBlastFix" , migrations = "" )
216229 @ Config .DefaultBoolean (true )
230+ @ Config .RequiresMcRestart
217231 public static boolean MINECART_EAR_BLAST_FIX ;
218232
219233 @ Config .Comment ({
0 commit comments