Added the dyeable recipes for the Sigil of Holding to the Alchemy Table.

This commit is contained in:
WayofTime 2016-06-09 21:43:37 -04:00
parent 4eda0d6caa
commit 5388dbf883
5 changed files with 165 additions and 10 deletions

View file

@ -74,7 +74,15 @@ public class AlchemyTableRecipe
return input.size();
}
public ItemStack getRecipeOutput()
/**
* Returns the output of the recipe, sensitive to the input list provided.
* If the input list does not technically match, the recipe should return
* the default output.
*
* @param inputList
* @return
*/
public ItemStack getRecipeOutput(List<ItemStack> inputList)
{
return output.copy();
}