forked from External/mage
(can't remove PlanarRollWatcher without test rework)
This commit is contained in:
parent
6155f2d403
commit
201c1ef443
2 changed files with 3 additions and 3 deletions
|
|
@ -29,7 +29,7 @@ public final class FracturedPowerstone extends CardImpl {
|
||||||
Ability ability = new ActivateAsSorceryActivatedAbility(
|
Ability ability = new ActivateAsSorceryActivatedAbility(
|
||||||
new FracturedPowerstoneEffect(), new TapSourceCost()
|
new FracturedPowerstoneEffect(), new TapSourceCost()
|
||||||
);
|
);
|
||||||
this.addAbility(ability);
|
this.addAbility(ability, new PlanarRollWatcher());
|
||||||
}
|
}
|
||||||
|
|
||||||
private FracturedPowerstone(final FracturedPowerstone card) {
|
private FracturedPowerstone(final FracturedPowerstone card) {
|
||||||
|
|
@ -77,4 +77,4 @@ class FracturedPowerstoneEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1339,7 +1339,7 @@ public abstract class GameImpl implements Game {
|
||||||
newWatchers.add(new CastSpellLastTurnWatcher());
|
newWatchers.add(new CastSpellLastTurnWatcher());
|
||||||
newWatchers.add(new PlayerLostLifeWatcher());
|
newWatchers.add(new PlayerLostLifeWatcher());
|
||||||
newWatchers.add(new BlockedAttackerWatcher());
|
newWatchers.add(new BlockedAttackerWatcher());
|
||||||
newWatchers.add(new PlanarRollWatcher()); // TODO: no need to be default watcher
|
newWatchers.add(new PlanarRollWatcher()); // needed for RollDiceTest (planechase code needs improves)
|
||||||
newWatchers.add(new AttackedThisTurnWatcher());
|
newWatchers.add(new AttackedThisTurnWatcher());
|
||||||
newWatchers.add(new CardsDrawnThisTurnWatcher());
|
newWatchers.add(new CardsDrawnThisTurnWatcher());
|
||||||
newWatchers.add(new ManaSpentToCastWatcher());
|
newWatchers.add(new ManaSpentToCastWatcher());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue