Fix JEI Altar recipe (#933)

This commit is contained in:
mezz 2016-09-26 00:17:20 -07:00 committed by Nick Ignoffo
parent f9185817a1
commit a1eb8aad56
3 changed files with 9 additions and 5 deletions

View file

@ -17,7 +17,7 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
public class AltarRecipeJEI extends BlankRecipeWrapper
{
@Nonnull
private final Object input;
private final List<ItemStack> input;
@Nonnull
private final ItemStack output;
@ -37,13 +37,13 @@ public class AltarRecipeJEI extends BlankRecipeWrapper
}
@Override
public List getInputs()
public List<List<ItemStack>> getInputs()
{
return Collections.singletonList(input);
}
@Override
public List getOutputs()
public List<ItemStack> getOutputs()
{
return Collections.singletonList(output);
}