* Oath of Nissa - Fixed target selection mot working for AI players.

This commit is contained in:
LevelX2 2016-04-10 10:30:23 +02:00
parent 635f0244dd
commit 0cf3ab9d78
2 changed files with 3 additions and 4 deletions

View file

@ -51,7 +51,7 @@ public class RevealTargetFromHandCost extends CostImpl {
public RevealTargetFromHandCost(TargetCardInHand target) {
this.addTarget(target);
this.text = (target.getNumberOfTargets() == 0 ? "you may " : "") + "reveal " + target.getTargetName();
this.text = (target.getNumberOfTargets() == 0 ? "You may reveal " : "Reveal ") + target.getTargetName();
this.revealedCards = new ArrayList<>();
}