mirror of
https://github.com/correl/mage.git
synced 2025-03-29 17:00:07 -09:00
Switched order of getRange and getDraws
This commit is contained in:
parent
1e0090e4a7
commit
8fd5d92152
1 changed files with 3 additions and 3 deletions
|
@ -441,12 +441,12 @@ public abstract class MatchImpl implements Match {
|
|||
sb.append("DeckHash: ").append(mp.getDeck().getDeckHashCode()).append("<br/>");
|
||||
}
|
||||
}
|
||||
if (options.getRange() != null) {
|
||||
sb.append(" Range: ").append(options.getRange().toString()).append("<br/>");
|
||||
}
|
||||
if (getDraws() > 0) {
|
||||
sb.append(" Draws: ").append(getDraws()).append("<br/>");
|
||||
}
|
||||
if (options.getRange() != null) {
|
||||
sb.append(" Range: ").append(options.getRange().toString()).append("<br/>");
|
||||
}
|
||||
sb.append("<br/>").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/>");
|
||||
|
|
Loading…
Add table
Reference in a new issue