diff --git a/src/main/java/techreborn/init/ModRecipes.java b/src/main/java/techreborn/init/ModRecipes.java index 970899996..4688638bd 100644 --- a/src/main/java/techreborn/init/ModRecipes.java +++ b/src/main/java/techreborn/init/ModRecipes.java @@ -44,6 +44,7 @@ import techreborn.items.ItemIngots; import techreborn.items.ItemNuggets; import techreborn.items.ItemParts; import techreborn.items.ItemPlates; +import techreborn.parts.ItemCables; import techreborn.utils.RecipeUtils; public class @@ -149,6 +150,12 @@ public class 'A', "ingot" + name.substring(0, 1).toUpperCase() + name.substring(1)); } + CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("electronicCircuit"), + "WWW", "SRS", "WWW", + 'R', ItemIngots.getIngotByName("refinediron"), + 'S', Items.redstone, + 'W', ItemCables.getCableByName("insulatedcopper")); + CraftingHelper.addShapedOreRecipe(BlockMachineFrame.getFrameByName("machine", 1), "AAA", "AXA", "AAA", 'A', ItemPlates.getPlateByName("iron")); diff --git a/src/main/java/techreborn/items/ItemIngots.java b/src/main/java/techreborn/items/ItemIngots.java index e9a3f18c0..b9395a285 100644 --- a/src/main/java/techreborn/items/ItemIngots.java +++ b/src/main/java/techreborn/items/ItemIngots.java @@ -29,7 +29,7 @@ public class ItemIngots extends ItemTextureBase { "bronze", "cadmium", "chrome", "copper", "cupronickel", "electrum", "indium", "invar", "iridium", "kanthal", "lead", "lodestone", "magnalium", "nichrome", "nickel", "osmium", "platinum", "silver", "steel", "tellurium", "tin", "titanium", - "tungsten", "hotTungstensteel", "tungstensteel", "zinc"}; + "tungsten", "hotTungstensteel", "tungstensteel", "zinc", "refinediron"}; public ItemIngots() {