Fixed isDifferent in Interface Terminal sending items constantly.

Better cache.
This commit is contained in:
AlgorithmX2
2014-08-14 20:23:37 -05:00
parent 881654d48d
commit 809495c573
2 changed files with 8 additions and 8 deletions
@@ -300,7 +300,7 @@ public class ContainerInterfaceTerminal extends AEBaseContainer
if ( a == null || b == null )
return true;
return !a.equals( b );
return !ItemStack.areItemStacksEqual( a, b );
}
private void regenList(NBTTagCompound data)