use of logisticspipes.pipes.PipeLogisticsChassi.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleApiaristTerminus method registerPosition.
@Override
public void registerPosition(ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.Terminus, 0, true, false, 5, 0, new ChassiTargetInformation(getPositionInt()));
}
use of logisticspipes.pipes.PipeLogisticsChassi.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleTerminus method registerPosition.
@Override
public void registerPosition(ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.Terminus, 0, true, false, 2, 0, new ChassiTargetInformation(getPositionInt()));
}
use of logisticspipes.pipes.PipeLogisticsChassi.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleThaumicAspectSink method registerPosition.
@Override
public void registerPosition(ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.ItemSink, -2, true, false, 5, 0, new ChassiTargetInformation(getPositionInt()));
}
use of logisticspipes.pipes.PipeLogisticsChassi.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModuleCrafter method registerPosition.
@Override
public void registerPosition(ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.ItemSink, 0, true, false, 1, 0, new ChassiTargetInformation(getPositionInt()));
}
use of logisticspipes.pipes.PipeLogisticsChassi.ChassiTargetInformation in project LogisticsPipes by RS485.
the class ModulePolymorphicItemSink method registerPosition.
@Override
public void registerPosition(ModulePositionType slot, int positionInt) {
super.registerPosition(slot, positionInt);
_sinkReply = new SinkReply(FixedPriority.ItemSink, 0, true, false, 3, 0, new ChassiTargetInformation(getPositionInt()));
}
Aggregations