Add config to disable railcraft steel recipe.
This commit is contained in:
commit
9e02f1ff35
3 changed files with 29 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue