Fixed the Blood Altar so that it can (again) work on a stack size larger than 1

This commit is contained in:
WayofTime 2016-07-20 21:29:04 -04:00
parent 4e7702290e
commit 34d9649c70
2 changed files with 11 additions and 1 deletions

View file

@ -2,6 +2,7 @@
Version 2.0.3-52
------------------------------------------------------
- Updated the Sanguine Scientiem with Alchemy Array recipes
- Fixed the Blood Altar so that it can (again) work on a stack size larger than 1.
------------------------------------------------------
Version 2.0.3-51

View file

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