Fix Isareth not adding corpse counters

This commit is contained in:
Alex W. Jackson 2021-10-31 14:08:35 -04:00
parent 3a76a0c3d0
commit 8c97b47b21

View file

@ -137,7 +137,7 @@ class IsarethTheAwakenerEffect extends OneShotEffect {
} }
Counters countersToAdd = new Counters(); Counters countersToAdd = new Counters();
countersToAdd.addCounter(CounterType.CORPSE.createInstance()); countersToAdd.addCounter(CounterType.CORPSE.createInstance());
game.setEnterWithCounters(source.getSourceId(), countersToAdd); game.setEnterWithCounters(card.getId(), countersToAdd);
return controller.moveCards(card, Zone.BATTLEFIELD, source, game); return controller.moveCards(card, Zone.BATTLEFIELD, source, game);
} }
} }