Allows the recipes to be made backwards
This commit is contained in:
parent
ff866d9352
commit
fed4ea8bd7
1 changed files with 6 additions and 2 deletions
|
@ -54,8 +54,12 @@ public final class TechRebornAPI {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (shouldAdd)
|
if (shouldAdd){
|
||||||
blastFurnaceRecipes.add(recipie);
|
blastFurnaceRecipes.add(recipie);
|
||||||
|
//This adds the same recipe but backwards. so you can swap the inputs
|
||||||
|
blastFurnaceRecipes.add(new BlastFurnaceRecipe(recipie.getInput2(), recipie.getInput1(), recipie.output1, recipie.output2, recipie.tickTime, recipie.minHeat));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void addRollingMachinceRecipe(ItemStack output,
|
public static void addRollingMachinceRecipe(ItemStack output,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue