mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Included logging for range at game startup (fixes #3878)
This commit is contained in:
parent
4836f381ef
commit
1e0090e4a7
1 changed files with 3 additions and 0 deletions
|
@ -441,6 +441,9 @@ 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/>");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue