mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
- Fixed #7596
This commit is contained in:
parent
93e556d784
commit
0e0ace14b5
1 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,9 @@ public class ForetellAbility extends SpecialAction {
|
||||||
// exile the card and it can't be cast the turn it was foretold
|
// exile the card and it can't be cast the turn it was foretold
|
||||||
this.addEffect(new ForetellExileEffect(card, foretellCost, foretellSplitCost));
|
this.addEffect(new ForetellExileEffect(card, foretellCost, foretellSplitCost));
|
||||||
// look at face-down card anytime
|
// look at face-down card anytime
|
||||||
addSubAbility(new SimpleStaticAbility(Zone.ALL, new ForetellLookAtCardEffect()));
|
Ability ability = new SimpleStaticAbility(Zone.ALL, new ForetellLookAtCardEffect());
|
||||||
|
ability.setControllerId(controllerId); // if not set, anyone can look at the card in exile
|
||||||
|
addSubAbility(ability);
|
||||||
this.setRuleVisible(true);
|
this.setRuleVisible(true);
|
||||||
this.addWatcher(new ForetoldWatcher());
|
this.addWatcher(new ForetoldWatcher());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue