- Added Time to Reflect and Wayward Servant. <Amonkhet>

This commit is contained in:
Achilles 2017-04-14 18:44:25 -05:00
parent b1ed5c3632
commit d51eb07692
4 changed files with 222 additions and 1 deletions

View file

@ -338,7 +338,7 @@ public abstract class AbilityImpl implements Ability {
Outcome outcome = getEffects().isEmpty() ? Outcome.Detriment : getEffects().get(0).getOutcome();
if (getTargets().chooseTargets(outcome, this.controllerId, this, noMana, game) == false) {
if ((variableManaCost != null || announceString != null) && !game.isSimulation()) {
game.informPlayer(controller, (sourceObject != null ? sourceObject.getIdName() : "") + ": no valid targets with this value of X");
game.informPlayer(controller, (sourceObject != null ? sourceObject.getIdName() : "") + ": no valid targets");
}
return false; // when activation of ability is canceled during target selection
}