mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
Fix #10455 (Ashnod the Uncaring)
This commit is contained in:
parent
029992ecfa
commit
d3b976cc46
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class AshnodTheUncaringTriggeredAbility extends TriggeredAbilityImpl {
|
|||
.noneMatch(SacrificeCost.class::isInstance)) {
|
||||
return false;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(stackAbility.getSourceId());
|
||||
Permanent permanent = game.getPermanentOrLKIBattlefield(stackAbility.getSourceId());
|
||||
if (permanent == null || (!permanent.isArtifact(game) && !permanent.isCreature(game))) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue