Add isItemValid check for ItemStackHandler (#5850)

This commit is contained in:
Someone 2019-06-25 16:50:08 -04:00 committed by LexManos
parent 73bb18e78b
commit b2a5d34679
1 changed files with 3 additions and 0 deletions

View File

@ -80,6 +80,9 @@ public class ItemStackHandler implements IItemHandler, IItemHandlerModifiable, I
{
if (stack.isEmpty())
return ItemStack.EMPTY;
if (!isItemValid(slot, stack))
return stack;
validateSlotIndex(slot);