Add config to disable railcraft steel recipe.

This commit is contained in:
modmuss50 2017-01-16 10:01:00 +00:00
commit 9e02f1ff35
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
3 changed files with 29 additions and 0 deletions

View file

@ -22,6 +22,7 @@ public class ConfigTechReborn {
public static boolean UninsulatedElectocutionParticle;
public static boolean UninsulatedElectocutionDamage;
public static boolean ScrapboxDispenser;
public static boolean disableRailcraftSteelNuggetRecipe;
// Power
public static int LightningRodChance;
public static int ThermalGeneratorOutput;
@ -412,6 +413,9 @@ public class ConfigTechReborn {
REMOVE_DUPLICATES = config
.get(CATEGORY_CRAFTING, "Remove Duplicates when IC2 is installed", false, "This atempts to fully intergrate TR with ic2 recipes (Beta)")
.getBoolean(false);
disableRailcraftSteelNuggetRecipe = config.get(CATEGORY_CRAFTING, "Disable Railcraft's Steel nugget recipe", false, "When true TechReborn will remove Railcrafts Iron Nugget to steel nuggert recipe.").getBoolean(false);
// Uu
HideUuRecipes = config.get(CATEGORY_UU, "Hide UU Recipes", true, "Hide UU Recipes from JEI/NEI")
.getBoolean(true);