added recipe for PDA

This commit is contained in:
gigabit101 2015-08-16 21:19:27 +01:00
parent 958a0b32d0
commit 25aeaf371e
3 changed files with 15 additions and 4 deletions

View file

@ -59,7 +59,9 @@ public class RecipesIC2 implements ICompatModule {
public void addTRRecipes() {
//General
CraftingHelper.addShapedOreRecipe(
CraftingHelper.addShapelessOreRecipe(new ItemStack(ModItems.manuel), IC2Items.getItem("plateiron"), Items.book);
CraftingHelper.addShapedOreRecipe(
ItemParts.getPartByName("machineParts", 16),
"CSC", "SCS", "CSC",
'S', "ingotSteel",
@ -1189,7 +1191,7 @@ public class RecipesIC2 implements ICompatModule {
static void addShappedIc2Recipes() {
Item drill = IC2Items.getItem("miningDrill").getItem();
ItemStack drillStack = new ItemStack(drill, 1, OreDictionary.WILDCARD_VALUE);
if (ConfigTechReborn.ExpensiveMacerator)
CraftingHelper.addShapedOreRecipe(IC2Items.getItem("macerator"),
"FDF", "DMD", "FCF",

View file

@ -90,7 +90,7 @@ public class BasePage extends GuiScreen {
@Override
public void actionPerformed(GuiButton button) {
if (button.id == 0)collection.changeActivePage("INDEX");
if (button.id == 0)collection.changeActivePage("CONTENTS");
}
@Override
public void mouseMovedOrUp(int par1, int par2, int par3){super.mouseMovedOrUp(par1, par2, par3);}