forked from External/mage
[AFC] fixed Danse Manatee not sacrificing creatures (fixes #8367)
This commit is contained in:
parent
5c3a161ad3
commit
5ecdd4fb4a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue