Details about morepackets set-back.

This commit is contained in:
asofold 2013-01-04 16:51:42 +01:00
parent 65a7bf8b36
commit 530f85c03c
2 changed files with 9 additions and 4 deletions

View File

@ -67,8 +67,11 @@ public class MorePackets extends Check {
Location newTo = null;
if (data.morePacketsSetback == null)
data.morePacketsSetback = from.getLocation();
if (data.morePacketsSetback == null){
// TODO: Check if other set-back is appropriate or if to set on other events.
if (data.setBack != null) data.morePacketsSetback = data.setBack.clone();
else data.morePacketsSetback = from.getLocation();
}
// Take a packet from the buffer.
data.morePacketsBuffer--;

View File

@ -67,8 +67,10 @@ public class MorePacketsVehicle extends Check {
Location newTo = null;
if (data.morePacketsVehicleSetback == null)
data.morePacketsVehicleSetback = from;
if (data.morePacketsVehicleSetback == null){
// TODO: Check if other set-back is appropriate or if to set on other events.
data.morePacketsVehicleSetback = from;
}
// Take a packet from the buffer.
data.morePacketsVehicleBuffer--;