This commit is contained in:
Modmuss50 2015-09-15 08:30:30 +01:00
parent bd1540b27b
commit 2b4daf86bb
2 changed files with 24 additions and 1 deletions

View file

@ -1478,6 +1478,26 @@ public class ModRecipes {
80, 60
));
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(
ItemDusts.getDustByName("pyrite", 3),
null,
ItemDusts.getDustByName("iron"),
ItemDusts.getDustByName("sulfur"),
null,
null,
120, 128
));
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(
ItemDusts.getDustByName("sphalerite", 2),
null,
ItemDusts.getDustByName("zinc"),
ItemDusts.getDustByName("sulfur"),
null,
null,
150, 100
));
}

View file

@ -49,6 +49,9 @@ public class ContentsPage extends TitledPage{
if (button.id == 5)collection.changeActivePage("MULTIBLOCKS");
if (button.id == 6)collection.changeActivePage("UPGRADES");
if (button.id == 7)collection.changeActivePage("VERSION");
if (button.id == 8)mc.displayGuiScreen(new TechRebornConfigGui(this));
if (button.id == 8){
buttonList.clear();
mc.displayGuiScreen(new TechRebornConfigGui(this));
}
}
}