Target spell choice for counterspell (and similiar cards) is fixed

This commit is contained in:
Maxmtg
2011-09-19 23:02:07 +00:00
parent d7aab4c56f
commit dd25a45362

View File

@@ -182,7 +182,7 @@ public class Target_Selection {
List<Zone> zone = tgt.getZone(); List<Zone> zone = tgt.getZone();
final boolean mandatory = target.getMandatory() ? target.hasCandidates(true) : false; final boolean mandatory = target.getMandatory() ? target.hasCandidates(true) : false;
if (zone.equals(Constant.Zone.Stack)) { if (zone.contains(Constant.Zone.Stack) && zone.size() == 1) {
// If Zone is Stack, the choices are handled slightly differently // If Zone is Stack, the choices are handled slightly differently
chooseCardFromStack(mandatory); chooseCardFromStack(mandatory);
return; return;