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(
|
||||
new FracturedPowerstoneEffect(), new TapSourceCost()
|
||||
);
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new PlanarRollWatcher());
|
||||
}
|
||||
|
||||
private FracturedPowerstone(final FracturedPowerstone card) {
|
||||
|
|
|
|||
|
|
@ -1339,7 +1339,7 @@ public abstract class GameImpl implements Game {
|
|||
newWatchers.add(new CastSpellLastTurnWatcher());
|
||||
newWatchers.add(new PlayerLostLifeWatcher());
|
||||
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 CardsDrawnThisTurnWatcher());
|
||||
newWatchers.add(new ManaSpentToCastWatcher());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue