diff --git a/Mage.Sets/src/mage/cards/c/CavesOfChaosAdventurer.java b/Mage.Sets/src/mage/cards/c/CavesOfChaosAdventurer.java index e19fc312bd5..4e20f11fa38 100644 --- a/Mage.Sets/src/mage/cards/c/CavesOfChaosAdventurer.java +++ b/Mage.Sets/src/mage/cards/c/CavesOfChaosAdventurer.java @@ -86,10 +86,10 @@ class CavesOfChaosAdventurerEffect extends OneShotEffect { player.moveCards(card, Zone.EXILED, source, game); if (CompletedDungeonWatcher.checkPlayer(source.getControllerId(), game)) { game.addEffect(new PlayFromNotOwnHandZoneTargetEffect( - Zone.EXILED, TargetController.YOU, Duration.Custom, true + Zone.EXILED, TargetController.YOU, Duration.EndOfTurn, true ).setTargetPointer(new FixedTarget(card, game)), source); } else { - CardUtil.makeCardPlayable(game, source, card, Duration.Custom, true); + CardUtil.makeCardPlayable(game, source, card, Duration.EndOfTurn, false); } return true; }