Fixes #145
This commit is contained in:
parent
bd1540b27b
commit
2b4daf86bb
2 changed files with 24 additions and 1 deletions
|
@ -1478,6 +1478,26 @@ public class ModRecipes {
|
||||||
80, 60
|
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
|
||||||
|
));
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,9 @@ public class ContentsPage extends TitledPage{
|
||||||
if (button.id == 5)collection.changeActivePage("MULTIBLOCKS");
|
if (button.id == 5)collection.changeActivePage("MULTIBLOCKS");
|
||||||
if (button.id == 6)collection.changeActivePage("UPGRADES");
|
if (button.id == 6)collection.changeActivePage("UPGRADES");
|
||||||
if (button.id == 7)collection.changeActivePage("VERSION");
|
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));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue