- Decklist viewer will now show the list with " x " between number and cardname.

This commit is contained in:
Sloth
2013-06-09 11:53:20 +00:00
parent c5bb24fccb
commit aa1458167e

View File

@@ -248,7 +248,7 @@ public class DeckgenUtil {
deckList.append(nl);
nLines++;
for (final Entry<PaperCard, Integer> ev : cp) {
deckList.append(ev.getValue()).append(" x ").append(ev.getKey()).append(nl);
deckList.append(ev.getValue()).append(" ").append(ev.getKey()).append(nl);
nLines++;
}
}