[AKH] Updated tooltip text on several white and blue cards. Some minor fixes.

This commit is contained in:
fireshoes 2017-04-15 23:37:50 -05:00
parent 88d25b7a3a
commit 06fdd17e7d
25 changed files with 666 additions and 613 deletions

View file

@ -167,9 +167,9 @@ public class BecomesCreatureSourceEffect extends ContinuousEffectImpl implements
private void setText() {
if (type != null && !type.isEmpty()) {
staticText = duration.toString() + " {this} becomes a " + token.getDescription() + " that's still a " + this.type;
staticText = duration.toString() + ", {this} becomes a " + token.getDescription() + " that's still a " + this.type;
} else {
staticText = duration.toString() + " {this} becomes a " + token.getDescription();
staticText = duration.toString() + ", {this} becomes a " + token.getDescription();
}
}