Added minetweaker support to the alloy furnace.

I have no idea on how minetweaker works so could some one help me test?

for 
This commit is contained in:
modmuss50 2015-07-02 20:45:05 +01:00
parent 85bfa95c1c
commit a85d917873
4 changed files with 116 additions and 0 deletions
src/main/java/techreborn/api/recipe

View file

@ -84,4 +84,9 @@ public abstract class BaseRecipe implements IBaseRecipeType , Cloneable {
public boolean useOreDic() {
return true;
}
@Override
public List<ItemStack> getOutputs() {
return outputs;
}
}

View file

@ -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.