mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixes #7099 Eye of Doom should not target
This commit is contained in:
parent
436908fc75
commit
707b35df07
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…
Reference in a new issue