Moar Sanity Checking!

This commit is contained in:
AlgorithmX2
2014-07-04 01:19:45 -05:00
parent 0a470eefc2
commit 8ad1f6515c
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -211,9 +211,13 @@ public final class AEItemStack extends AEStack<IAEItemStack> implements IAEItemS
public static IAEItemStack loadItemStackFromNBT(NBTTagCompound i)
{
if ( i == null )
return null;
ItemStack itemstack = ItemStack.loadItemStackFromNBT( i );
if ( itemstack == null )
return null;
AEItemStack aeis = AEItemStack.create( itemstack );
// aeis.priority = i.getInteger( "Priority" );
aeis.stackSize = i.getLong( "Cnt" );