Finish up on recycler and temp jei handler
This commit is contained in:
parent
007f9266e5
commit
080b633493
10 changed files with 290 additions and 53 deletions
22
src/main/java/techreborn/api/recipe/RecyclerRecipe.java
Normal file
22
src/main/java/techreborn/api/recipe/RecyclerRecipe.java
Normal 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";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue