updated to build craft 7.0.8
This commit is contained in:
parent
02fce02d7b
commit
2ef2ff997f
3 changed files with 9 additions and 10 deletions
|
@ -14,7 +14,7 @@ public class RecipeManager {
|
|||
LogHelper.info("IC2 Compat Loaded");
|
||||
}
|
||||
|
||||
if (Loader.isModLoaded("BuildCraft|Factory"))
|
||||
if (Loader.isModLoaded("BuildCraft|Builders"))
|
||||
{
|
||||
RecipesBuildcraft.init();
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package techreborn.compat.recipes;
|
||||
|
||||
import buildcraft.BuildCraftBuilders;
|
||||
import ic2.api.item.IC2Items;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import techreborn.util.CraftingHelper;
|
||||
import techreborn.util.RecipeRemover;
|
||||
import buildcraft.BuildCraftFactory;
|
||||
|
||||
public class RecipesBuildcraft {
|
||||
|
||||
|
@ -17,14 +17,14 @@ public class RecipesBuildcraft {
|
|||
public static void removeRecipes()
|
||||
{
|
||||
RecipeRemover.removeAnyRecipe(new ItemStack(
|
||||
BuildCraftFactory.quarryBlock));
|
||||
BuildCraftBuilders.quarryBlock));
|
||||
}
|
||||
|
||||
public static void addRecipies()
|
||||
{
|
||||
//Quarry
|
||||
CraftingHelper.addShapedOreRecipe(
|
||||
new ItemStack (BuildCraftFactory.quarryBlock),
|
||||
new ItemStack (BuildCraftBuilders.quarryBlock),
|
||||
new Object[]
|
||||
{
|
||||
"IAI", "GIG", "DED",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue