making Panglacial Wurm work

This commit is contained in:
Northmoc
2020-07-15 12:21:42 -04:00
parent 136c99377d
commit 53bd5f9067

View File

@@ -947,10 +947,12 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
if (!decider.getController().confirmAction(tgtSA, null, Localizer.getInstance().getMessage("lblDoYouWantPlayCard", CardTranslation.getTranslatedName(tgtCard.getName())))) { if (!decider.getController().confirmAction(tgtSA, null, Localizer.getInstance().getMessage("lblDoYouWantPlayCard", CardTranslation.getTranslatedName(tgtCard.getName())))) {
continue; continue;
} }
tgtSA.setSVar("IsCastFromPlayEffect", "True");
// if played, that card cannot be found // if played, that card cannot be found
if (decider.getController().playSaFromPlayEffect(tgtSA)) { if (decider.getController().playSaFromPlayEffect(tgtSA)) {
fetchList.remove(tgtCard); fetchList.remove(tgtCard);
} }
//some kind of reset here?
} }
} }
final Map<AbilityKey, Object> runParams = AbilityKey.newMap(); final Map<AbilityKey, Object> runParams = AbilityKey.newMap();