mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Extinction Event not resolving correctly
This commit is contained in:
parent
509bd39244
commit
660862b75f
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class ExtinctionEventEffect extends OneShotEffect {
|
||||||
) ? oddFilter : evenFilter;
|
) ? oddFilter : evenFilter;
|
||||||
return player.moveCards(
|
return player.moveCards(
|
||||||
game.getBattlefield().getActivePermanents(
|
game.getBattlefield().getActivePermanents(
|
||||||
filter, source.getSourceId(), game
|
filter, source.getControllerId(), source.getSourceId(), game
|
||||||
).stream().collect(Collectors.toSet()), Zone.EXILED, source, game
|
).stream().collect(Collectors.toSet()), Zone.EXILED, source, game
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue