removed comments about punctuation.

This commit is contained in:
etpalmer63 2020-06-06 23:07:24 -07:00
parent 120915c949
commit 046d63732d
55 changed files with 70 additions and 72 deletions

View file

@ -135,7 +135,7 @@ public class RevealCardsFromLibraryUntilEffect extends OneShotEffect {
sb.append("a random");
}
sb.append(" order"); //removed punctuation
sb.append(" order");
}
break;
}

View file

@ -76,7 +76,7 @@ public class DistributeCountersEffect extends OneShotEffect {
}
String name = counterType.getName();
String text = "distribute " + CardUtil.numberToText(amount) + ' ' + name + " counters among " + targetDescription; //removed punctuation
String text = "distribute " + CardUtil.numberToText(amount) + ' ' + name + " counters among " + targetDescription;
if (removeAtEndOfTurn) {
text += " For each " + name + " counter you put on a creature this way, remove a "
+ name + " counter from that creature at the beginning of the next cleanup step.";