The race start time was current + prestart period + 1 second.
It is now current + prestart + 1 minute.
main
fjc40 9 years ago
parent 8273cd5167
commit f71e175f80

@ -133,7 +133,7 @@ public class Race implements Runnable {
this.raceId = raceData.getRaceId();
//The start time is current time + 4 minutes, scaled. prestart is 3 minutes, and we add another.
this.startTime = System.currentTimeMillis() + ((Constants.RacePreStartTime + (1 * 1000)) / this.scaleFactor);
this.startTime = System.currentTimeMillis() + ((Constants.RacePreStartTime + (1 * 60 * 1000)) / this.scaleFactor);
this.setRaceStatusEnum(RaceStatusEnum.NOT_ACTIVE);
this.raceType = RaceTypeEnum.FLEET_RACE;

Loading…
Cancel
Save