Fixes #2554: Extract identical item not any equal one.

This commit is contained in:
yueh 2016-11-01 15:51:38 +01:00
parent d7d99c5e7e
commit e927c27b85

View file

@ -111,7 +111,7 @@ class ItemHandlerAdapter implements IMEInventory<IAEItemStack>, IBaseMonitor<IAE
{ {
ItemStack sub = itemHandler.getStackInSlot( i ); ItemStack sub = itemHandler.getStackInSlot( i );
if( !Platform.isSameItem( sub, req ) ) if( !Platform.isSameItemPrecise( sub, req ) )
{ {
continue; continue;
} }