mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[STX] fixed Lukka, Wayward Bonder emblem not damaging players
This commit is contained in:
parent
ed1db71474
commit
47bbb70675
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ class LukkaWaywardBonderEmblemEffect extends OneShotEffect {
|
|||
return targetPermanent.damage(permanent.getPower().getValue(), permanent.getId(), source, game) > 0;
|
||||
}
|
||||
Player targetPlayer = game.getPlayer(source.getFirstTarget());
|
||||
if (targetPermanent != null) {
|
||||
return targetPermanent.damage(permanent.getPower().getValue(), permanent.getId(), source, game) > 0;
|
||||
if (targetPlayer != null) {
|
||||
return targetPlayer.damage(permanent.getPower().getValue(), permanent.getId(), source, game) > 0;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue