aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/config/client/ConfigPreference.java
blob: f69ee8b8905538723ca859a6c8000cebbd89143f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package gregtech.common.config.client;

import com.gtnewhorizon.gtnhlib.config.Config;

import gregtech.api.enums.Mods;

@Config(modid = Mods.Names.GREG_TECH, category = "preference", configSubDirectory = "GregTech", filename = "Client")
public class ConfigPreference {

    @Config.Comment("if true, input filter will initially be on when input buses are placed in the world.")
    @Config.DefaultBoolean(false)
    public static boolean inputBusInitialFilter;

    @Config.Comment("if true, allow multistacks on single blocks by default when they are first placed in the world.")
    @Config.DefaultBoolean(false)
    public static boolean singleBlockInitialAllowMultiStack;

    @Config.Comment("if true, input filter will initially be on when machines are placed in the world.")
    @Config.DefaultBoolean(false)
    public static boolean singleBlockInitialFilter;
}