use of logisticspipes.pipes.PipeLogisticsChassis.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleEnchantmentSinkMK2 method registerPosition.
@Override
public void registerPosition(@Nonnull ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.EnchantmentItemSink, 1, true, false, 1, 0, new ChassiTargetInformation(getPositionInt()));
}
use of logisticspipes.pipes.PipeLogisticsChassis.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleItemSink method registerPosition.
@Override
public void registerPosition(@Nonnull ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.ItemSink, 0, true, false, 1, 0, new ChassiTargetInformation(getPositionInt()));
_sinkReplyDefault = new SinkReply(FixedPriority.DefaultRoute, 0, true, true, 1, 0, new ChassiTargetInformation(getPositionInt()));
}
Aggregations