misc text fixes

This commit is contained in:
Evan Kranzler 2020-04-25 20:24:46 -04:00
parent aa24b8047d
commit 4afefea1f5
11 changed files with 36 additions and 32 deletions

View file

@ -80,7 +80,7 @@ public class FlipCoinEffect extends OneShotEffect {
}
StringBuilder sb = new StringBuilder("Flip a coin. If you win the flip, ").append(executingEffectsWon.getText(mode));
if (!executingEffectsLost.isEmpty()) {
sb.append(". If you lose the flip, ").append(executingEffectsLost.getText(mode));
sb.append(" If you lose the flip, ").append(executingEffectsLost.getText(mode));
}
return sb.toString();
}