mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Planechase: added info about planechase mode in game's startup logs;
This commit is contained in:
parent
39b56d525a
commit
beb7ab852f
1 changed files with 5 additions and 1 deletions
|
@ -420,7 +420,11 @@ public abstract class MatchImpl implements Match {
|
|||
}
|
||||
sb.append(" Mulligan type: ").append(options.getMulliganType().toString()).append("<br/>");
|
||||
sb.append(" Free mulligans: ").append(options.getFreeMulligans()).append("<br/>");
|
||||
sb.append("<br/>").append("Match is ").append(this.getOptions().isRated() ? "" : "not ").append("rated<br/>");
|
||||
if (options.isPlaneChase()) {
|
||||
sb.append(" Planechase mode activated").append("<br/>");
|
||||
}
|
||||
sb.append("<br/>");
|
||||
sb.append("Match is ").append(this.getOptions().isRated() ? "" : "not ").append("rated<br/>");
|
||||
sb.append("You have to win ").append(this.getWinsNeeded()).append(this.getWinsNeeded() == 1 ? " game" : " games").append(" to win the complete match<br/>");
|
||||
sb.append("<br/>Game has started<br/><br/>");
|
||||
return sb.toString();
|
||||
|
|
Loading…
Reference in a new issue