forked from External/mage
[SWS] Fixed Exogorth's block ability.
This commit is contained in:
parent
99fa296e37
commit
54d5599e06
3 changed files with 49 additions and 40 deletions
|
|
@ -90,7 +90,8 @@ class SpaceFlightEffect extends RestrictionEffect implements MageSingleton {
|
|||
|
||||
@Override
|
||||
public boolean canBeBlocked(Permanent attacker, Permanent blocker, Ability source, Game game) {
|
||||
return blocker.getAbilities().containsKey(SpaceflightAbility.getInstance().getId());
|
||||
return blocker.getAbilities().containsKey(SpaceflightAbility.getInstance().getId())
|
||||
|| blocker.getAbilities().containsKey(CanBlockSpaceflightAbility.getInstance().getId());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue