mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[EOE] Fix Planetary Annihilation
It was never allowing people with 6 or fewer lands to save their lands.
This commit is contained in:
parent
a502ee94d5
commit
9c4bd210d7
1 changed files with 1 additions and 0 deletions
|
|
@ -66,6 +66,7 @@ class PlanetaryAnnihilationEffect extends OneShotEffect {
|
||||||
if (player == null || game.getBattlefield().count(
|
if (player == null || game.getBattlefield().count(
|
||||||
StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, playerId, source, game
|
StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, playerId, source, game
|
||||||
) <= 6) {
|
) <= 6) {
|
||||||
|
toSave.addAll(game.getBattlefield().getActivePermanents(StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, playerId, game));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
TargetPermanent target = new TargetPermanent(
|
TargetPermanent target = new TargetPermanent(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue