Included logging for range at game startup (fixes #3878)

This commit is contained in:
L_J 2018-02-04 01:33:17 +00:00 committed by GitHub
parent 4836f381ef
commit 1e0090e4a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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