You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Config.Comment("Divisor for Recipe Duration per Overclock. This will be removed eventually, once a value is chosen. Default: 2.0")
186
+
@Config.Comment("Divisor for Recipe Duration per Overclock. Default: 2.0")
195
187
@Config.RangeDouble(min = 2.0, max = 3.0)
196
188
publicdoubleoverclockDivisor = 2.0;
197
189
190
+
@Config.Comment("Whether to enable that Steam Multiblocks use Steel instead of Bronze. Default: false")
191
+
@Config.RequiresMcRestart
192
+
publicbooleansteelSteamMultiblocks = false;
193
+
194
+
@Config.Comment("Steam to EU multiplier for Steam Multiblocks. 1.0 means 1 Steam -> 1 EU. 0.5 means 2 Steam -> 1 EU. Default: 0.5")
195
+
@Config.RequiresWorldRestart
196
+
publicdoublemultiblockSteamToEU = 0.5;
197
+
198
198
publicstaticclassGT5U {
199
199
200
200
@Config.Comment("Enable an extra ZPM and UV Battery (this also makes the Ultimate Battery harder to make). Default: false")
@@ -205,48 +205,45 @@ public static class GT5U {
205
205
@Config.RequiresMcRestart
206
206
publicbooleanreplaceUVwithMAXBat = false;
207
207
208
-
@Config.Comment("This config requires 'B:Use custom machine tank sizes' = true to take effect. Changes the input tank size to the first value, and out tank size to the second value for nearly every single block machine. Units are millibuckets.")
209
-
@Config.Name("Custom machine fluid tank sizes")
208
+
@Config.Comment("This config requires 'B:Use custom machine tank sizes' = true to take effect. Changes the input tank size to the first value, and out tank size to the second value for nearly every single block machine. Units are millibuckets. Default: {64000, 64000}")
@Config.Comment("This config enables the customization of nearly every single block machine's input and output fluid tank sizes.")
215
-
@Config.Name("Use custom machine tank sizes")
213
+
@Config.Comment("This config enables the customization of nearly every single block machine's input and output fluid tank sizes. Default: false")
216
214
@Config.RequiresMcRestart
217
215
publicbooleanuseCustomMachineTankSizes = false;
218
216
219
217
@Config.Comment("Require Wrench to break machines? Default: false")
220
218
publicbooleanrequireWrenchForMachines = false;
221
219
222
220
@Config.Comment("Change the recipe of rods to result in 1 stick and 2 small piles of dusts. Default: false")
221
+
@Config.RequiresMcRestart
223
222
publicbooleanharderRods = false;
224
223
225
224
@Config.Comment("Whether or not to use polymers instead of rare metals for Carbon Fibers. REMOVES THE CHANCED OUTPUT! Default: false")
225
+
@Config.RequiresMcRestart
226
226
publicbooleanpolymerCarbonFiber = false;
227
227
228
228
@Config.Comment("The default color to overlay onto machines. \n16777215 (0xFFFFFF in decimal) is no coloring (default), and 13819135 (0xD2DCFF in decimal) is the classic blue from GT5. THIS IS SERVER SIDE!!!")
229
-
@Config.Name("Default Machine Color")
230
229
@Config.RequiresMcRestart
231
230
publicintdefaultPaintingColor = 0xFFFFFF;
232
231
233
232
@Config.Comment("The default color to overlay onto cable insulation. \n7829367 (0x777777 in decimal) is no coloring (default), and 4210752 (0x404040 in decimal) is the classic black from GT5. THIS IS SERVER SIDE!!!")
234
-
@Config.Name("Default Cable Color")
235
233
@Config.RequiresMcRestart
236
234
publicintdefaultInsulationColor = 0x777777;
237
235
238
236
@Config.Comment("Enable temperature based bonuses for the Electric Blast Furnace. Default: true")
239
-
@Config.Name("Use electric blast furnace temperature bonuses")
240
237
@Config.RequiresMcRestart
241
238
publicbooleanebfTemperatureBonuses = true;
242
239
243
240
@Config.Comment("Enable more challenging recipes for Electric Blast Furnace Coils. Default: true")
0 commit comments