- Add ID to cardname may untap cards.

This commit is contained in:
Sol
2014-03-30 21:11:36 +00:00
parent 42297e47b7
commit 8110a19f7b

View File

@@ -208,7 +208,7 @@ public class Untap extends Phase {
private static void optionalUntap(final Card c) { private static void optionalUntap(final Card c) {
if (c.hasKeyword("You may choose not to untap CARDNAME during your untap step.")) { if (c.hasKeyword("You may choose not to untap CARDNAME during your untap step.")) {
if (c.isTapped()) { if (c.isTapped()) {
String prompt = "Untap " + c.getName() + "?"; String prompt = "Untap " + c.toString() + "?";
boolean defaultChoice = true; boolean defaultChoice = true;
if (c.getGainControlTargets().size() > 0) { if (c.getGainControlTargets().size() > 0) {
final List<Card> targets = c.getGainControlTargets(); final List<Card> targets = c.getGainControlTargets();