mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Don't check for event validity in Karn's Ultimate
Karn Liberated should not check whether it’s valid before putting the Commanders where they belong. Technically any operations after Karn’s ultimate goes off are invalid if strict checks are made.
This commit is contained in:
parent
34846170c4
commit
eb89781154
1 changed files with 3 additions and 1 deletions
|
@ -49,6 +49,7 @@ import mage.constants.Zone;
|
|||
import mage.filter.FilterCard;
|
||||
import mage.game.ExileZone;
|
||||
import mage.game.Game;
|
||||
import mage.game.command.Commander;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.GameEvent.EventType;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -140,7 +141,8 @@ class KarnLiberatedEffect extends OneShotEffect {
|
|||
&& !player.getSideboard().contains(card.getId())
|
||||
&& !cards.contains(card)) { // not the exiled cards
|
||||
if (card.getId().equals(player.getCommanderId())) {
|
||||
card.moveToZone(Zone.COMMAND, null, game, true);
|
||||
game.addCommander(new Commander(card));
|
||||
game.setZone(card.getId(), Zone.COMMAND);
|
||||
} else {
|
||||
player.getLibrary().putOnTop(card, game);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue