fix blocking mode somehow voiding items

This commit is contained in:
PrototypeTrousers
2022-02-22 19:00:01 -03:00
parent 30f4cdf545
commit b0e81ac2d1
5 changed files with 32 additions and 18 deletions
@@ -37,11 +37,10 @@ public class BlockingItemHandler extends BlockingInventoryAdaptor
for( int slot = 0; slot < slots; slot++ )
{
ItemStack is = this.itemHandler.getStackInSlot( slot );
if( is.isEmpty() || !isBlockableItem( is ) )
if( !is.isEmpty() && isBlockableItem( is ) )
{
continue;
return true;
}
return true;
}
return false;
}