37
37
import gtPlusPlus .xmod .gregtech .common .Meta_GT_Proxy ;
38
38
import gtPlusPlus .xmod .gregtech .common .blocks .textures .TexturesGtBlock ;
39
39
import gtPlusPlus .xmod .gregtech .common .blocks .textures .TexturesGtTools ;
40
+ import gtPlusPlus .xmod .gregtech .common .tileentities .machines .basic .GT_MetaTileEntity_WorldAccelerator ;
40
41
import net .minecraft .launchwrapper .Launch ;
41
42
import net .minecraftforge .common .config .Configuration ;
42
43
@@ -111,6 +112,8 @@ public static void handleConfigFile(final FMLPreInitializationEvent event) {
111
112
true , "Diesel egines with different internals, they consume less fuel overall." );
112
113
CORE .configSwitches .enableMachine_GeothermalEngines = config .getBoolean ("enableMachineGeothermalEngines" ,
113
114
"gregtech" , true , "These may be overpowered, Consult a local geologist." );
115
+ CORE .configSwitches .enableMachine_WorldAccelerators = config .getBoolean ("enableMachineWorldAccelerators" ,
116
+ "gregtech" , true , "These allow boosting Block/TileEntity Tick times [OP]." );
114
117
115
118
// Multi machines
116
119
CORE .configSwitches .enableMultiblock_AlloyBlastSmelter = config .getBoolean ("enableMultiblockAlloyBlastSmelter" ,
@@ -158,6 +161,13 @@ public static void handleConfigFile(final FMLPreInitializationEvent event) {
158
161
//Biomes
159
162
CORE .DARKBIOME_ID = config .getInt ("darkbiome_ID" , "worldgen" , 238 , 1 , 254 , "The biome within the Dark Dimension." );
160
163
164
+ //Blacklisted Accelerator TileEntities
165
+ GT_MetaTileEntity_WorldAccelerator .BlacklistedTileEntiyClassNames = config .getStringList (
166
+ "BlacklistedTileEntiyClassNames" , "gregtech" ,
167
+ GT_MetaTileEntity_WorldAccelerator .BlacklistedTileEntiyClassNames ,
168
+ "The Canonical Class-Names of TileEntities that should be ignored by the WorldAccelerator" );
169
+
170
+
161
171
config .save ();
162
172
}
163
173
@@ -169,8 +179,7 @@ public static void loadTextures() {
169
179
Utils .LOG_WARNING ("Processing texture: " + TexturesGtTools .SKOOKUM_CHOOCHER .getTextureFile ().getResourcePath ());
170
180
171
181
// Blocks
172
- Utils .LOG_WARNING (
173
- "Processing texture: " + TexturesGtBlock .Casing_Machine_Dimensional .getTextureFile ().getResourcePath ());
182
+ Utils .LOG_WARNING ("Processing texture: " + TexturesGtBlock .Casing_Machine_Dimensional .getTextureFile ().getResourcePath ());
174
183
}
175
184
176
185
// Pre-Init
0 commit comments