mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Target spell choice for counterspell (and similiar cards) is fixed
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user