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
1 changed files with 1 additions and 1 deletions

View File

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