fixed Domri's Ambush not dealing the correct amount of damage (fixes #5735)

This commit is contained in:
Evan Kranzler 2019-04-20 17:08:02 -04:00
parent 0e79ab3855
commit 9ea6fd2b62

View file

@ -75,6 +75,7 @@ class DomrisAmbushEffect extends OneShotEffect {
return false; return false;
} }
permanent.addCounters(CounterType.P1P1.createInstance(), source, game); permanent.addCounters(CounterType.P1P1.createInstance(), source, game);
game.applyEffects();
return new DamageWithPowerTargetEffect().apply(game, source); return new DamageWithPowerTargetEffect().apply(game, source);
} }
} }