[EOE] Fix Planetary Annihilation

It was never allowing people with 6 or fewer lands to save their lands.
This commit is contained in:
Grath 2025-11-07 20:19:19 -05:00
parent a502ee94d5
commit 9c4bd210d7

View file

@ -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(