forked from External/mage
added new class for "this or another" triggered abilities
This commit is contained in:
parent
6c69939c0d
commit
a379a06485
32 changed files with 389 additions and 672 deletions
|
|
@ -53,7 +53,7 @@ public class ConstellationAbility extends TriggeredAbilityImpl {
|
|||
return false;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(event.getTargetId());
|
||||
return permanent != null && permanent.isEnchantment();
|
||||
return permanent != null && ((thisOr && permanent.getId().equals(getSourceId())) || permanent.isEnchantment());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue