Fixes #124
This commit is contained in:
parent
4d87a27509
commit
0154f5a21a
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
package techreborn.init;
|
||||
|
||||
import cpw.mods.fml.common.Mod;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.init.Items;
|
||||
|
@ -145,6 +146,20 @@ public class ModRecipes {
|
|||
'O', new ItemStack(ModItems.lapotronicOrb)
|
||||
);
|
||||
|
||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.rockCutter),
|
||||
"DT ", "DT ", "DCB",
|
||||
'D', ItemParts.getPartByName("rockCutterBlade"),
|
||||
'T', "ingotTitanium",
|
||||
'C', ItemParts.getPartByName("basicCircuitBoard"),
|
||||
'B', new ItemStack(Items.diamond)
|
||||
);
|
||||
|
||||
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("rockCutterBlade"),
|
||||
"SDS ", "SDS", "SDS",
|
||||
'D', new ItemStack(Items.diamond),
|
||||
'S', "ingotSteel"
|
||||
);
|
||||
|
||||
LogHelper.info("Shapped Recipes Added");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue