More ItemStack null changes.

This commit is contained in:
Gunther De Wachter
2017-06-26 07:07:04 +02:00
parent 78904204cf
commit 650edae902
2 changed files with 2 additions and 2 deletions
@@ -182,7 +182,7 @@ public class TileInscriber extends AENetworkPowerTile implements IGridTickable,
for( int num = 0; num < this.inv.getSizeInventory(); num++ )
{
if( this.inv.getStackInSlot( num ) != null )
if( !this.inv.getStackInSlot( num ).isEmpty() )
{
slot |= ( 1 << num );
}