TechReborn/src/main/java/techreborn/compat/recipes/RecipesBuildcraft.java

27 lines
424 B
Java
Raw Normal View History

2015-04-17 20:39:14 +02:00
package techreborn.compat.recipes;
import net.minecraft.item.ItemStack;
import techreborn.util.RecipeRemover;
2015-04-24 15:20:09 +02:00
import buildcraft.BuildCraftFactory;
2015-04-17 20:39:14 +02:00
public class RecipesBuildcraft {
2015-04-24 15:20:09 +02:00
2015-04-17 20:39:14 +02:00
public static void init()
{
removeRecipes();
addRecipies();
}
2015-04-24 15:20:09 +02:00
2015-04-17 20:39:14 +02:00
public static void removeRecipes()
{
2015-04-24 15:20:09 +02:00
RecipeRemover.removeAnyRecipe(new ItemStack(
BuildCraftFactory.quarryBlock));
2015-04-17 20:39:14 +02:00
}
2015-04-24 15:20:09 +02:00
2015-04-17 20:39:14 +02:00
public static void addRecipies()
{
2015-04-24 15:20:09 +02:00
2015-04-17 20:39:14 +02:00
}
}