mirror of
https://github.com/correl/mage.git
synced 2025-04-08 17:00:07 -09:00
[BRO] fix Slagstone Refinery triggering off of tokens rather than nontokens (#9755)
This commit is contained in:
parent
0b6a198386
commit
a6a69548e1
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ class SlagstoneRefineryTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
return zEvent.getFromZone().match(Zone.BATTLEFIELD)
|
return zEvent.getFromZone().match(Zone.BATTLEFIELD)
|
||||||
&& (zEvent.getToZone().match(Zone.GRAVEYARD) || zEvent.getToZone().match(Zone.EXILED))
|
&& (zEvent.getToZone().match(Zone.GRAVEYARD) || zEvent.getToZone().match(Zone.EXILED))
|
||||||
&& zEvent.getTargetId().equals(getSourceId())
|
&& zEvent.getTargetId().equals(getSourceId())
|
||||||
|| (zEvent.getTarget().isArtifact(game) && (zEvent.getTarget() instanceof PermanentToken));
|
|| (zEvent.getTarget().isArtifact(game) && !(zEvent.getTarget() instanceof PermanentToken));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue