fixed Bedazzle not dealing damage

This commit is contained in:
Evan Kranzler 2019-01-20 11:31:25 -05:00
parent 6466acb70a
commit 906d5d33b1

View file

@ -76,7 +76,7 @@ class BedazzleEffect extends OneShotEffect {
permanent.destroy(source.getSourceId(), game, false);
}
Effect effect = new DamageTargetEffect(new StaticValue(2), true, "", true);
effect.setTargetPointer(new FixedTarget(source.getTargets().get(0).getFirstTarget(), game));
effect.setTargetPointer(new FixedTarget(source.getTargets().get(1).getFirstTarget(), game));
effect.apply(game, source);
return true;
}