small optimization

This commit is contained in:
PrototypeTrousers
2022-03-10 21:30:30 -03:00
parent 036f4e1c5b
commit f824bfd2e1
2 changed files with 2 additions and 2 deletions
@@ -138,7 +138,7 @@ public class MECraftingInventory implements IMEInventory<IAEItemStack>
this.localCache = new ItemListIgnoreCrafting<>( AEApi.instance().storage().getStorageChannel( IItemStorageChannel.class ).createList() );
for( final IAEItemStack is : target.getStorageList() )
{
this.localCache.add( target.extractItems( is.copy().setStackSize( Long.MAX_VALUE ), Actionable.SIMULATE, src ) );
this.localCache.add( target.extractItems( is, Actionable.SIMULATE, src ) );
}
this.par = null;