mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
fix Sigarda's Vanguard choice missing withNotTarget
This commit is contained in:
parent
5f22d56995
commit
29f98589db
1 changed files with 1 additions and 0 deletions
|
|
@ -80,6 +80,7 @@ class SigardasVanguardEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
TargetPermanent target = new TargetCreaturesWithDifferentPowers();
|
TargetPermanent target = new TargetCreaturesWithDifferentPowers();
|
||||||
|
target.withNotTarget(true);
|
||||||
player.choose(outcome, target, source, game);
|
player.choose(outcome, target, source, game);
|
||||||
if (target.getTargets().isEmpty()) {
|
if (target.getTargets().isEmpty()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue