mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 19:59:54 -08:00
Some changes to token expansion set calculation.
This commit is contained in:
parent
257092dc34
commit
ac19cfe379
2 changed files with 18 additions and 14 deletions
|
|
@ -95,10 +95,7 @@ class GraveTitanAbility extends TriggeredAbilityImpl {
|
|||
if (event.getType() == EventType.ATTACKER_DECLARED && event.getSourceId().equals(this.getSourceId())) {
|
||||
return true;
|
||||
}
|
||||
if (event.getType() == EventType.ENTERS_THE_BATTLEFIELD && event.getTargetId().equals(this.getSourceId())) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return event.getType() == EventType.ENTERS_THE_BATTLEFIELD && event.getTargetId().equals(this.getSourceId());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue