Logistics Pipes

Logistics Pipes

13M Downloads

output of crafting card is routed to inventory where chases pipe is connected too

mikiones opened this issue ยท 3 comments

commented

image

one of the crafting cards is
image

all glass now is routed to that inv.

image

seams to happend to random card but only one a time,

commented

looks that itemSink registered crafting output items as interested in ?

commented

image

got pickle, crafting module return interest in crating ouput item when quick sort looks for interest in stack

commented

public SinkReply sinksItem(ItemIdentifier item, int bestPriority, int bestCustomPriority, boolean allowDefault, boolean includeInTransit) {
if (bestPriority > _sinkReply.fixedPriority.ordinal() || (bestPriority == _sinkReply.fixedPriority.ordinal() && bestCustomPriority >= _sinkReply.customPriority)) {
return null;
}
return new SinkReply(_sinkReply, spaceFor(item, includeInTransit), areAllOrderesToBuffer() ? BufferMode.DESTINATION_BUFFERED : BufferMode.NONE);
}

is intentional that sink replay for crafting card accept everything below priority 5 ?