TechReborn/src/main/java/techreborn/api/recipe/RecyclerRecipe.java

24 lines
492 B
Java
Raw Normal View History

package techreborn.api.recipe;
import net.minecraft.item.ItemStack;
import techreborn.items.ItemParts;
import techreborn.lib.Reference;
2016-03-24 01:39:26 +01:00
//THIS is only here to trick JEI into showing recipes for the recycler
2016-03-24 01:39:26 +01:00
public class RecyclerRecipe extends BaseRecipe
{
2016-03-24 01:39:26 +01:00
public RecyclerRecipe(ItemStack input)
{
super(Reference.recyclerRecipe, 0, 0);
inputs.add(input);
addOutput(ItemParts.getPartByName("scrap"));
}
@Override
2016-03-24 01:39:26 +01:00
public String getUserFreindlyName()
{
return "Recycler";
}
}