mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +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()
|
game, source.getSourceId(), source.getSourceObjectZoneChangeCounter()
|
||||||
), sourcePermanent.getIdName()
|
), sourcePermanent.getIdName()
|
||||||
);
|
);
|
||||||
ContinuousEffect effect = new PlayFromNotOwnHandZoneTargetEffect(Duration.EndOfTurn);
|
ContinuousEffect effect = new PlayFromNotOwnHandZoneTargetEffect(Duration.EndOfGame);
|
||||||
effect.setTargetPointer(new FixedTarget(card, game));
|
effect.setTargetPointer(new FixedTarget(card, game));
|
||||||
game.addEffect(effect, source);
|
game.addEffect(effect, source);
|
||||||
return true;
|
return true;
|
||||||
|
@ -109,7 +109,7 @@ class ValakutExplorationExileEffect extends OneShotEffect {
|
||||||
class ValakutExplorationCastFromExileEffect extends AsThoughEffectImpl {
|
class ValakutExplorationCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
|
|
||||||
ValakutExplorationCastFromExileEffect() {
|
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";
|
staticText = "You may play the card from exile";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue