mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[ACR] fix Fall of the First Civilization not allowing nonlands to be chosen
This commit is contained in:
parent
e943c4bec8
commit
b47e33a394
1 changed files with 1 additions and 2 deletions
|
|
@ -19,7 +19,6 @@ import mage.game.Game;
|
|||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetOpponent;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
|
|
@ -114,7 +113,7 @@ class FallOfTheFirstCivilizationEffect extends OneShotEffect {
|
|||
));
|
||||
break;
|
||||
default:
|
||||
TargetPermanent target = new TargetControlledCreaturePermanent(3);
|
||||
TargetPermanent target = new TargetPermanent(3, StaticFilters.FILTER_CONTROLLED_PERMANENT_NON_LAND);
|
||||
target.withNotTarget(true);
|
||||
target.withChooseHint("to prevent being destroyed");
|
||||
player.choose(outcome, target, source, game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue