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

View file

@ -899,6 +899,9 @@ public class Platform
public static EntityPlayer getPlayer(WorldServer w)
{
if ( w == null )
throw new NullPointerException();
EntityPlayer wrp = fakePlayers.get( w );
if ( wrp != null )
return wrp;

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" );