fixed Netherborn Altar not losing life

This commit is contained in:
Evan Kranzler 2020-04-29 18:42:43 -04:00
parent a239fd0dda
commit ba4fba24ce

View file

@ -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);
}