Update to new RebornCore. Added a config setting to disable railcrafts Iron Nugget to Steel Nugget recipe.

This commit is contained in:
modmuss50 2017-01-11 15:33:34 +00:00
parent 5588bda10b
commit 2c60034a88
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
9 changed files with 118 additions and 33 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,11 @@ public class ConfigTechReborn {
removeDuplices = 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);