* Fixed a bug of setting tournament start time.

This commit is contained in:
LevelX2 2014-11-02 12:10:38 +01:00
parent 8f642df60e
commit 146a41dcb8

View file

@ -82,7 +82,7 @@ public abstract class TournamentImpl implements Tournament {
public TournamentImpl(TournamentOptions options) {
this.options = options;
draft = null;
startTime = new Date();
startTime = new Date(); // will be overwritten again as the tournament really starts
abort = false;
}
@ -494,7 +494,7 @@ public abstract class TournamentImpl implements Tournament {
@Override
public void setStartTime() {
this.stepStartTime = new Date();
this.startTime = new Date();
}