mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Add ID to cardname may untap cards.
This commit is contained in:
@@ -208,7 +208,7 @@ public class Untap extends Phase {
|
||||
private static void optionalUntap(final Card c) {
|
||||
if (c.hasKeyword("You may choose not to untap CARDNAME during your untap step.")) {
|
||||
if (c.isTapped()) {
|
||||
String prompt = "Untap " + c.getName() + "?";
|
||||
String prompt = "Untap " + c.toString() + "?";
|
||||
boolean defaultChoice = true;
|
||||
if (c.getGainControlTargets().size() > 0) {
|
||||
final List<Card> targets = c.getGainControlTargets();
|
||||
|
||||
Reference in New Issue
Block a user