mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
fixed Bedazzle not dealing damage
This commit is contained in:
parent
6466acb70a
commit
906d5d33b1
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class BedazzleEffect extends OneShotEffect {
|
||||||
permanent.destroy(source.getSourceId(), game, false);
|
permanent.destroy(source.getSourceId(), game, false);
|
||||||
}
|
}
|
||||||
Effect effect = new DamageTargetEffect(new StaticValue(2), true, "", true);
|
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);
|
effect.apply(game, source);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue