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

21 lines
529 B
Java
Raw Normal View History

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