Merge branch 'master' of https://github.com/TechReborn/TechReborn
This commit is contained in:
commit
bd59b48d02
1 changed files with 16 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
package techreborn.compat.recipes;
|
||||
|
||||
import ic2.api.item.IC2Items;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import techreborn.util.CraftingHelper;
|
||||
import techreborn.util.RecipeRemover;
|
||||
import buildcraft.BuildCraftFactory;
|
||||
|
||||
|
@ -20,7 +23,19 @@ public class RecipesBuildcraft {
|
|||
|
||||
public static void addRecipies()
|
||||
{
|
||||
|
||||
//Quarry
|
||||
CraftingHelper.addShapedOreRecipe(
|
||||
new ItemStack (BuildCraftFactory.quarryBlock),
|
||||
new Object[]
|
||||
{
|
||||
"IAI", "GIG", "DED",
|
||||
'I', "gearIron",
|
||||
'G', "gearGold",
|
||||
'D', "gearDiamond",
|
||||
'A', IC2Items.getItem("advancedCircuit"),
|
||||
'E', IC2Items.getItem("diamondDrill")
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue