Added minetweaker support to the alloy furnace.
I have no idea on how minetweaker works so could some one help me test? for #70
This commit is contained in:
parent
85bfa95c1c
commit
a85d917873
4 changed files with 116 additions and 0 deletions
src/main/java/techreborn/api/recipe
|
@ -84,4 +84,9 @@ public abstract class BaseRecipe implements IBaseRecipeType , Cloneable {
|
|||
public boolean useOreDic() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ItemStack> getOutputs() {
|
||||
return outputs;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,6 +30,12 @@ public interface IBaseRecipeType {
|
|||
*/
|
||||
public int getOutputsSize();
|
||||
|
||||
/**
|
||||
*
|
||||
* @return get outputs
|
||||
*/
|
||||
public List<ItemStack> getOutputs();
|
||||
|
||||
/**
|
||||
* This is the name to check that the recipe is the one that should be used in
|
||||
* the tile entity that is set up to process this recipe.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue