mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
* Oath of Nissa - Fixed target selection mot working for AI players.
This commit is contained in:
parent
635f0244dd
commit
0cf3ab9d78
2 changed files with 3 additions and 4 deletions
|
|
@ -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<>();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue