blob: d6844641b27d288a982947990557101a21ac302b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package ggfab;
import com.gtnewhorizon.gtnhlib.config.Config;
import gregtech.api.enums.Mods;
@Config(modid = Mods.Names.G_G_FAB, filename = "ggfab")
@Config.RequiresMcRestart
public class ConfigurationHandler {
@Config.Comment("Laser overclock penalty factor. This will incredibly change the game balance. Even a small step from 0.2 to 0.3 can have very significant impact. Tweak with caution!")
@Config.RangeFloat(min = 0.0f, max = 10.0f)
public static float laserOCPenaltyFactor = 0.3f;
}
|