blob: c978f35365f45aa31d96458bc97d12276e834a15 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package gregtech.common.config.worldgen;
import com.gtnewhorizon.gtnhlib.config.Config;
import gregtech.api.enums.Mods;
@Config(
modid = Mods.Names.GREG_TECH,
category = "general",
configSubDirectory = "GregTech",
filename = "WorldGeneration")
public class ConfigGeneral {
@Config.Comment("if true, enables basalt ore gen.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateBasaltOres;
@Config.Comment("if true, enables black granite ore gen.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateBlackGraniteOres;
@Config.Comment("if true, enables marble ore gen.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateMarbleOres;
@Config.Comment("if true, enables red granite ore gen.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateRedGraniteOres;
@Config.Comment("If true, disables vanilla oregen.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean disableVanillaOres;
@Config.Comment("if true, enables underground dirt gen. Does nothing if the vanilla oregen is enabled!")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateUndergroundDirtGen;
@Config.Comment("if true, enables underground gravel gen. Does nothing if the vanilla oregen is enabled!")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean generateUndergroundGravelGen;
}
|