mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
parent
1cb737537e
commit
5a99a3afa6
1 changed files with 2 additions and 2 deletions
|
@ -86,10 +86,10 @@ class CavesOfChaosAdventurerEffect extends OneShotEffect {
|
||||||
player.moveCards(card, Zone.EXILED, source, game);
|
player.moveCards(card, Zone.EXILED, source, game);
|
||||||
if (CompletedDungeonWatcher.checkPlayer(source.getControllerId(), game)) {
|
if (CompletedDungeonWatcher.checkPlayer(source.getControllerId(), game)) {
|
||||||
game.addEffect(new PlayFromNotOwnHandZoneTargetEffect(
|
game.addEffect(new PlayFromNotOwnHandZoneTargetEffect(
|
||||||
Zone.EXILED, TargetController.YOU, Duration.Custom, true
|
Zone.EXILED, TargetController.YOU, Duration.EndOfTurn, true
|
||||||
).setTargetPointer(new FixedTarget(card, game)), source);
|
).setTargetPointer(new FixedTarget(card, game)), source);
|
||||||
} else {
|
} else {
|
||||||
CardUtil.makeCardPlayable(game, source, card, Duration.Custom, true);
|
CardUtil.makeCardPlayable(game, source, card, Duration.EndOfTurn, false);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue