1
0
Fork 0
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:
L_J 2018-02-04 01:43:46 +00:00 committed by GitHub
parent 1e0090e4a7
commit 8fd5d92152
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/>");