mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Fixed a bug of setting tournament start time.
This commit is contained in:
parent
8f642df60e
commit
146a41dcb8
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ public abstract class TournamentImpl implements Tournament {
|
||||||
public TournamentImpl(TournamentOptions options) {
|
public TournamentImpl(TournamentOptions options) {
|
||||||
this.options = options;
|
this.options = options;
|
||||||
draft = null;
|
draft = null;
|
||||||
startTime = new Date();
|
startTime = new Date(); // will be overwritten again as the tournament really starts
|
||||||
abort = false;
|
abort = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -494,7 +494,7 @@ public abstract class TournamentImpl implements Tournament {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setStartTime() {
|
public void setStartTime() {
|
||||||
this.stepStartTime = new Date();
|
this.startTime = new Date();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue