Fixed Incomplete Null Check for MEMonitorIInventory
This commit is contained in:
parent
2913d71acd
commit
71fc2d1b5c
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ public class MEMonitorIInventory implements IMEInventory<IAEItemStack>, IMEMonit
|
|||
{
|
||||
for (CachedItemStack cis : end.values())
|
||||
{
|
||||
if ( cis != null )
|
||||
if ( cis != null && cis.aeStack != null )
|
||||
{
|
||||
IAEItemStack a = cis.aeStack.copy();
|
||||
a.setStackSize( -a.getStackSize() );
|
||||
|
|
Loading…
Reference in a new issue