(can't remove PlanarRollWatcher without test rework)

This commit is contained in:
xenohedron 2023-11-30 01:00:48 -05:00
parent 6155f2d403
commit 201c1ef443
2 changed files with 3 additions and 3 deletions

View file

@ -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) {

View file

@ -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());