Fixed the Blood Altar so that it can (again) work on a stack size larger than 1
This commit is contained in:
parent
4e7702290e
commit
34d9649c70
2 changed files with 11 additions and 1 deletions
|
@ -58,9 +58,18 @@ public class AltarRecipeRegistry
|
|||
return null;
|
||||
}
|
||||
|
||||
//TODO: Determine a more time-effective method
|
||||
public static AltarRecipe getRecipeForInput(ItemStack input)
|
||||
{
|
||||
return getRecipeForInput(Collections.singletonList(input));
|
||||
for (AltarRecipe recipe : recipes.values())
|
||||
{
|
||||
if (recipe.doesRequiredItemMatch(input, recipe.getMinTier()))
|
||||
{
|
||||
return recipe;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public static AltarRecipe getRecipeForInput(String input)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue