[minor] Improved inform text of Death denied.

This commit is contained in:
LevelX2 2013-06-21 21:30:56 +02:00
parent 514d21375c
commit a573d2c026

View file

@ -66,7 +66,7 @@ public class DeathDenied extends CardImpl<DeathDenied> {
if (ability instanceof SpellAbility) {
ability.getTargets().clear();
int xValue = ability.getManaCostsToPay().getX();
Target target = new TargetCardInYourGraveyard(xValue, new FilterCreatureCard(new StringBuilder(xValue).append(xValue != 1?" creatures":"creature").toString()));
Target target = new TargetCardInYourGraveyard(xValue, new FilterCreatureCard(new StringBuilder(xValue).append(xValue != 1?" creature cards":"creature card").append(" from your graveyard").toString()));
ability.addTarget(target);
}
}