mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Fix minimum targets to 1 for non-optional effect of Colossal Grave-Reaver.
This commit is contained in:
parent
aa637b414b
commit
e00d5359b1
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class ColossalGraveReaverEffect extends OneShotEffect {
|
|||
break;
|
||||
default:
|
||||
cardsToMove = new HashSet<>();
|
||||
TargetCard target = new TargetCard(0, 1, Zone.ALL, defaultFilter);
|
||||
TargetCard target = new TargetCard(1, 1, Zone.ALL, defaultFilter);
|
||||
target.withNotTarget(true);
|
||||
controller.choose(Outcome.PlayForFree, cardsToChooseFrom, target, source, game);
|
||||
cardsToMove.add(cardsToChooseFrom.get(target.getFirstTarget(), game));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue