Slates and inscription tools should use ItemEnum properly

This commit is contained in:
Nicholas Ignoffo 2018-02-18 14:20:36 -08:00
parent 600326acce
commit ee42f6ddc2
4 changed files with 79 additions and 82 deletions

View file

@ -44,7 +44,7 @@ public class CategoryRitual {
for (int i = 1; i < 5; i++) {
EnumRuneType type = EnumRuneType.values()[i];
AltarRecipe scribeRecipe = RecipeHelper.getAltarRecipeForOutput(type.getScribeStack());
AltarRecipe scribeRecipe = RecipeHelper.getAltarRecipeForOutput(type.getStack());
if (scribeRecipe != null) {
ritualStonePages.add(new PageAltarRecipe(scribeRecipe));
}