Rename to destination

This commit is contained in:
thatsIch
2014-11-04 11:48:26 +01:00
parent b123419486
commit fe7510d607
3 changed files with 15 additions and 15 deletions
@@ -400,15 +400,15 @@ public abstract class AEBaseContainer extends Container
for (Object inventorySlot : this.inventorySlots)
{
AppEngSlot cs = (AppEngSlot) inventorySlot;
ItemStack dest = cs.getStack();
ItemStack destination = cs.getStack();
if ( !(cs.isPlayerSide()) && cs instanceof SlotFake )
{
if ( Platform.isSameItemPrecise( dest, tis ) )
if ( Platform.isSameItemPrecise( destination, tis ) )
{
return null;
}
else if ( dest == null )
else if ( destination == null )
{
cs.putStack( tis.copy() );
cs.onSlotChanged();