mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Amrou Seekers - Fixed the not working can't be blocked ability.
This commit is contained in:
parent
0acce10d9d
commit
093bc5e0e9
1 changed files with 2 additions and 5 deletions
|
@ -103,7 +103,7 @@ class AmrouSeekersEvasionAbility extends EvasionAbility<AmrouSeekersEvasionAbili
|
|||
|
||||
class AmrouSeekersRestrictionEffect extends RestrictionEffect<AmrouSeekersRestrictionEffect> {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature an opponent controls");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("artifact creatures and/or white creatures");
|
||||
static {
|
||||
filter.add(Predicates.or(new CardTypePredicate(CardType.ARTIFACT), new ColorPredicate(ObjectColor.WHITE)));
|
||||
}
|
||||
|
@ -118,10 +118,7 @@ class AmrouSeekersRestrictionEffect extends RestrictionEffect<AmrouSeekersRestri
|
|||
|
||||
@Override
|
||||
public boolean applies(Permanent permanent, Ability source, Game game) {
|
||||
if (permanent.getAbilities().containsKey(IntimidateAbility.getInstance().getId())) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue