Even more null fixes.

This commit is contained in:
Gunther De Wachter
2017-07-02 04:13:49 +02:00
parent c455ee69b8
commit eb0b304fd9
5 changed files with 11 additions and 11 deletions
@@ -109,7 +109,7 @@ public class BlockChest extends AEBaseTileBlock
else
{
final ItemStack cell = tg.getStackInSlot( 1 );
if( cell != null )
if( !cell.isEmpty() )
{
final ICellHandler ch = AEApi.instance().registries().cell().getHandler( cell );