mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
- Fixed #7309
This commit is contained in:
parent
57c8094fa1
commit
1c76c660f7
1 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ class ValakutExplorationExileEffect extends OneShotEffect {
|
|||
game, source.getSourceId(), source.getSourceObjectZoneChangeCounter()
|
||||
), sourcePermanent.getIdName()
|
||||
);
|
||||
ContinuousEffect effect = new PlayFromNotOwnHandZoneTargetEffect(Duration.EndOfTurn);
|
||||
ContinuousEffect effect = new PlayFromNotOwnHandZoneTargetEffect(Duration.EndOfGame);
|
||||
effect.setTargetPointer(new FixedTarget(card, game));
|
||||
game.addEffect(effect, source);
|
||||
return true;
|
||||
|
@ -109,7 +109,7 @@ class ValakutExplorationExileEffect extends OneShotEffect {
|
|||
class ValakutExplorationCastFromExileEffect extends AsThoughEffectImpl {
|
||||
|
||||
ValakutExplorationCastFromExileEffect() {
|
||||
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.Custom, Outcome.Benefit);
|
||||
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfGame, Outcome.Benefit);
|
||||
staticText = "You may play the card from exile";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue