mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Merge pull request #7101 from magefree/fix/EyeOfDoom
Fixed that Eye of Doom uses target instead a choose (fixes #7099)
This commit is contained in:
commit
8412b19d0e
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class EyeOfDoomEffect extends OneShotEffect {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
List<Permanent> permanents = new ArrayList<>();
|
||||
Target target = new TargetNonlandPermanent();
|
||||
target.setNotTarget(false);
|
||||
target.setNotTarget(true);
|
||||
PlayerList playerList = game.getPlayerList().copy();
|
||||
playerList.setCurrent(game.getActivePlayerId());
|
||||
Player player = game.getPlayer(game.getActivePlayerId());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue