mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
Fixed a bug of handling of tournament sub tables if a user left. Some changes to match view.
This commit is contained in:
parent
3699b7ca3d
commit
d051aef63f
3 changed files with 9 additions and 4 deletions
|
|
@ -350,10 +350,13 @@ public abstract class MatchImpl implements Match {
|
|||
sb.append("\nGame has started\n");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Date getStartTime() {
|
||||
return new Date(startTime.getTime());
|
||||
if (startTime != null) {
|
||||
return new Date(startTime.getTime());
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue