mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
fixed Netherborn Altar not losing life
This commit is contained in:
parent
a239fd0dda
commit
ba4fba24ce
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ class NetherbornAltarEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Permanent permanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
Permanent permanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
||||||
if (permanent == null) {
|
if (permanent != null) {
|
||||||
int counterCount = permanent.getCounters(game).getCount(CounterType.SOUL);
|
int counterCount = permanent.getCounters(game).getCount(CounterType.SOUL);
|
||||||
controller.loseLife(3 * counterCount, game, false);
|
controller.loseLife(3 * counterCount, game, false);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue