Fix for SidedInvWrapper isItemValid using wrong slot (#5642)

This commit is contained in:
Robert WC Seifert 2019-04-11 11:29:14 -04:00 committed by tterrag
parent d8137f7bcf
commit f68fdcf703
1 changed files with 2 additions and 1 deletions

View File

@ -245,6 +245,7 @@ public class SidedInvWrapper implements IItemHandlerModifiable
@Override
public boolean isItemValid(int slot, @Nonnull ItemStack stack)
{
return inv.isItemValidForSlot(slot, stack);
int slot1 = getSlot(inv, slot, side);
return slot1 == -1 ? false : inv.isItemValidForSlot(slot1, stack);
}
}