Add extractor support to craft tweaker
This commit is contained in:
parent
d7ce35428c
commit
f1a3387fbf
3 changed files with 47 additions and 2 deletions
|
@ -32,7 +32,7 @@ public class ExtractorRecipe extends BaseRecipe {
|
|||
|
||||
boolean useOreDic = true;
|
||||
|
||||
public ExtractorRecipe(ItemStack input1, ItemStack output1, int tickTime, int euPerTick) {
|
||||
public ExtractorRecipe(Object input1, ItemStack output1, int tickTime, int euPerTick) {
|
||||
super(Reference.EXTRACTOR_RECIPE, tickTime, euPerTick);
|
||||
if (input1 != null)
|
||||
addInput(input1);
|
||||
|
@ -40,7 +40,7 @@ public class ExtractorRecipe extends BaseRecipe {
|
|||
addOutput(output1);
|
||||
}
|
||||
|
||||
public ExtractorRecipe(ItemStack input1, ItemStack output1, int tickTime, int euPerTick, boolean useOreDic) {
|
||||
public ExtractorRecipe(Object input1, ItemStack output1, int tickTime, int euPerTick, boolean useOreDic) {
|
||||
this(input1, output1, tickTime, euPerTick);
|
||||
this.useOreDic = useOreDic;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue