mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -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(
|
||||
StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, playerId, source, game
|
||||
) <= 6) {
|
||||
toSave.addAll(game.getBattlefield().getActivePermanents(StaticFilters.FILTER_CONTROLLED_PERMANENT_LANDS, playerId, game));
|
||||
continue;
|
||||
}
|
||||
TargetPermanent target = new TargetPermanent(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue