Doing some minor tweaks for the release.
This commit is contained in:
parent
39e3d6eb34
commit
adc14d5f46
3 changed files with 15 additions and 10 deletions
|
@ -33,6 +33,11 @@ public class AltarRecipeRegistry
|
|||
|
||||
public static boolean isRequiredItemValid(ItemStack testItem, int currentTierAltar)
|
||||
{
|
||||
if(testItem == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
for (AltarRecipe recipe : altarRecipes)
|
||||
{
|
||||
if (recipe.doesRequiredItemMatch(testItem, currentTierAltar))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue