Finish up on recycler and temp jei handler

This commit is contained in:
gigabit101 2016-03-07 14:07:52 +00:00
parent 007f9266e5
commit 080b633493
10 changed files with 290 additions and 53 deletions

View file

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