TechReborn/src/main/java/techreborn/compat/CompatConfigs.java

19 lines
869 B
Java
Raw Normal View History

package techreborn.compat;
import reborncore.common.registration.RebornRegistry;
import reborncore.common.registration.impl.ConfigRegistry;
2017-06-09 17:47:44 +02:00
import techreborn.lib.ModInfo;
2017-06-09 17:47:44 +02:00
@RebornRegistry(modID = ModInfo.MOD_ID)
public class CompatConfigs {
@ConfigRegistry(config = "compat", category = "buildcraft", key = "ExpensiveQuarryRecipe", comment = "Buildcraft's quarry will require an advanced circuit and diamond drill if enabled")
public static boolean expensiveQuarry = true;
@ConfigRegistry(config = "compat", category = "buildcraft", key = "EnableBuildcraftFuels", comment = "Allow Buildcraft fuels to be used in fuel generators")
public static boolean allowBCFuels = true;
@ConfigRegistry(config = "compat", category = "theoneprobe", key = "EnableTOPSupport", comment = "Display machine info in The One Probe's HUD")
public static boolean enableTOP = true;
}