[AFC] fixed Danse Manatee not sacrificing creatures (fixes #8367)

This commit is contained in:
Evan Kranzler 2021-10-07 09:38:47 -04:00
parent 5c3a161ad3
commit 5ecdd4fb4a

View file

@ -94,7 +94,7 @@ class DanseMacabreEffect extends OneShotEffect {
TargetPermanent target = new TargetPermanent(filter);
target.setNotTarget(true);
player.choose(Outcome.Sacrifice, target, source.getSourceId(), game);
Permanent permanent = game.getPermanent(source.getSourceId());
Permanent permanent = game.getPermanent(target.getFirstTarget());
if (permanent == null) {
continue;
}