- refactoring related to #8375 "C" cards

This commit is contained in:
Jeff Wadsworth 2021-10-19 15:33:37 -05:00
parent 5b9477caae
commit 2e625cc5a5
25 changed files with 29 additions and 29 deletions

View file

@ -94,7 +94,7 @@ class ChandraPyromasterEffect1 extends OneShotEffect {
if (creature != null) {
creature.damage(1, source.getSourceId(), source, game, false, true);
ContinuousEffect effect = new CantBlockTargetEffect(Duration.EndOfTurn);
effect.setTargetPointer(new FixedTarget(creature.getId()));
effect.setTargetPointer(new FixedTarget(creature.getId(), game));
game.addEffect(effect, source);
}
return true;