blob: 495ef190c48962a82fabc79deb0f1994d2fd0d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package gregtech.common.config.other;
import com.gtnewhorizon.gtnhlib.config.Config;
import gregtech.api.enums.Mods;
@Config(modid = Mods.Names.GREG_TECH, category = "general", configSubDirectory = "GregTech", filename = "Other")
public class ConfigGeneral {
@Config.Comment("How much pipes you can chain wrench to disable their input.")
@Config.DefaultInt(64)
@Config.RequiresMcRestart
public static int pipeWrenchingChainRange;
@Config.Comment("How much blocks you can chain paint with GT spray cans.")
@Config.DefaultInt(64)
@Config.RequiresMcRestart
public static int sprayCanChainRange;
@Config.Comment("How much blocks you can paint with GT spray cans.")
@Config.DefaultInt(512)
@Config.RequiresMcRestart
public static int sprayCanUses;
}
|