aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/config/Other.java
blob: 724e3aa24b384fc7f6f75fd40c25b0b2ad9451db (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;

import com.gtnewhorizon.gtnhlib.config.Config;

import gregtech.api.enums.Mods;

@Config(modid = Mods.Names.GREG_TECH, category = "other", configSubDirectory = "GregTech", filename = "Other")
public class Other {

    @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;
}