mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
added missing watcher
This commit is contained in:
parent
0bb3caa950
commit
1c701ecf7c
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ import mage.abilities.effects.keyword.ScryEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.watchers.common.ManaSpentToCastWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -26,6 +27,7 @@ public final class UnexplainedVision extends CardImpl {
|
|||
new ScryEffect(3), AdamantCondition.BLUE, "<br><i>Adamant</i> — " +
|
||||
"If at least three blue mana was spent to cast this spell, scry 3."
|
||||
));
|
||||
this.getSpellAbility().addWatcher(new ManaSpentToCastWatcher());
|
||||
}
|
||||
|
||||
private UnexplainedVision(final UnexplainedVision card) {
|
||||
|
|
Loading…
Reference in a new issue