fixed Daxos, Blessed by the Sun triggering off of noncreature permanents

This commit is contained in:
Evan Kranzler 2020-01-04 16:09:18 -05:00
parent 7bc00879d4
commit 25630ecc22

View file

@ -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