- Won't be asked to select/order cards to play from opening hand if there are none to play

This commit is contained in:
moomarc
2013-06-03 06:06:40 +00:00
parent 32baff78dd
commit 21d46db987

View File

@@ -1572,10 +1572,12 @@ public class GameAction {
} }
} }
} }
// Players are supposed to return the effects in an order they want those to be resolved (Rule 103.5) // Players are supposed to return the effects in an order they want those to be resolved (Rule 103.5)
usableFromOpeningHand = takesAction.getController().chooseSaToActivateFromOpeningHand(usableFromOpeningHand); if (!usableFromOpeningHand.isEmpty()) {
usableFromOpeningHand = takesAction.getController().chooseSaToActivateFromOpeningHand(usableFromOpeningHand);
}
for(final SpellAbility sa : usableFromOpeningHand ) { for(final SpellAbility sa : usableFromOpeningHand ) {
if (!takesAction.getZone(ZoneType.Hand).contains(sa.getSourceCard())) if (!takesAction.getZone(ZoneType.Hand).contains(sa.getSourceCard()))
continue; continue;