Fix JEI Altar recipe (#933)
This commit is contained in:
parent
f9185817a1
commit
a1eb8aad56
3 changed files with 9 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue