small text fix

This commit is contained in:
Evan Kranzler 2018-04-23 11:55:09 -04:00
parent d2f41405b7
commit ea5155bb34
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ import mage.target.common.TargetCreatureOrPlaneswalkerAmount;
*/
public class DragonlordAtarka extends CardImpl {
private static final FilterCreatureOrPlaneswalkerPermanent filter = new FilterCreatureOrPlaneswalkerPermanent("creatures and/or planeswalkers your opponents control");
private static final FilterCreatureOrPlaneswalkerPermanent filter = new FilterCreatureOrPlaneswalkerPermanent("target creatures and/or planeswalkers your opponents control");
static {
filter.add(new ControllerPredicate(TargetController.OPPONENT));

View file

@ -97,7 +97,7 @@ public class DamageMultiEffect extends OneShotEffect {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
return this.sourceName + " deals " + amount.toString() + " damage divided as you choose among any number of target " + mode.getTargets().get(0).getTargetName();
return this.sourceName + " deals " + amount.toString() + " damage divided as you choose among any number of " + mode.getTargets().get(0).getTargetName();
}
public String getSourceName() {