mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00: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());
|
||||
if (permanent == null) {
|
||||
if (permanent != null) {
|
||||
int counterCount = permanent.getCounters(game).getCount(CounterType.SOUL);
|
||||
controller.loseLife(3 * counterCount, game, false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue