mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
fixed Daxos, Blessed by the Sun triggering off of noncreature permanents
This commit is contained in:
parent
7bc00879d4
commit
25630ecc22
1 changed files with 3 additions and 1 deletions
|
|
@ -73,7 +73,9 @@ class DaxosBlessedByTheSunAbility extends TriggeredAbilityImpl {
|
|||
return false;
|
||||
}
|
||||
Permanent creature = game.getPermanentOrLKIBattlefield(event.getTargetId());
|
||||
return creature != null && creature.isControlledBy(this.getControllerId());
|
||||
return creature != null
|
||||
&& creature.isCreature()
|
||||
&& creature.isControlledBy(this.getControllerId());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue