remove outdated todo

This commit is contained in:
Ell 2020-10-14 20:23:51 +02:00
parent 035254227c
commit 1fa764854c

View file

@ -393,7 +393,6 @@ public class PipeNetwork implements ICapabilitySerializable<CompoundNBT>, GraphL
}
public int getItemsOnTheWay(BlockPos goalInv, ItemStack type, ItemEqualityType... equalityTypes) {
// TODO pending auto-crafting requests should be marked as "on the way" here to allow over-sending prevention
return this.getPipeItemsOnTheWay(goalInv)
.filter(i -> type == null || ItemEqualityType.compareItems(i.stack, type, equalityTypes))
.mapToInt(i -> i.stack.getCount()).sum();