forked from External/mage
fix for issue 22 + fix for planeswalker damage redirection
This commit is contained in:
parent
c90193a4eb
commit
9c3ff863e8
49 changed files with 636 additions and 182 deletions
|
|
@ -70,7 +70,7 @@ public class DamageMultiEffect extends OneShotEffect<DamageMultiEffect> {
|
|||
for (UUID target: multiTarget.getTargets()) {
|
||||
Permanent permanent = game.getPermanent(target);
|
||||
if (permanent != null) {
|
||||
permanent.damage(multiTarget.getTargetAmount(target), source.getId(), game, true);
|
||||
permanent.damage(multiTarget.getTargetAmount(target), source.getId(), game, true, false);
|
||||
}
|
||||
else {
|
||||
Player player = game.getPlayer(target);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue