Added Lathe
This commit is contained in:
parent
c6e3dfaf82
commit
2157fe1cb4
8 changed files with 232 additions and 0 deletions
16
src/main/java/techreborn/recipes/LatheRecipe.java
Normal file
16
src/main/java/techreborn/recipes/LatheRecipe.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package techreborn.recipes;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import techreborn.api.recipe.BaseRecipe;
|
||||
|
||||
public class LatheRecipe extends BaseRecipe {
|
||||
|
||||
public LatheRecipe(ItemStack input1, ItemStack output1, int tickTime, int euPerTick)
|
||||
{
|
||||
super("alloySmelterRecipe", tickTime, euPerTick);
|
||||
if(input1 != null)
|
||||
inputs.add(input1);
|
||||
if(output1 != null)
|
||||
outputs.add(output1);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue