Fix Navigator's Compass not working while casting spells

This commit is contained in:
Alex W. Jackson 2022-02-20 13:24:57 -05:00
parent 8243c19fdf
commit dd8d86ba95
6 changed files with 49 additions and 85 deletions

View file

@ -96,7 +96,7 @@ class QuicksilverFountainEffect extends OneShotEffect {
Permanent landChosen = game.getPermanent(source.getFirstTarget());
landChosen.addCounters(CounterType.FLOOD.createInstance(), player.getId(), source, game);
ContinuousEffect becomesBasicLandTargetEffect
= new BecomesBasicLandTargetEffect(Duration.Custom, false, SubType.ISLAND);
= new BecomesBasicLandTargetEffect(Duration.Custom, SubType.ISLAND);
ConditionalContinuousEffect effect
= new ConditionalContinuousEffect(becomesBasicLandTargetEffect,
new LandHasFloodCounterCondition(), staticText);