Added the dyeable recipes for the Sigil of Holding to the Alchemy Table.
This commit is contained in:
parent
4eda0d6caa
commit
5388dbf883
5 changed files with 165 additions and 10 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue