diff --git a/Mage/src/mage/game/permanent/PermanentImpl.java b/Mage/src/mage/game/permanent/PermanentImpl.java index cb2aae8533a..d4e0f7b46b7 100644 --- a/Mage/src/mage/game/permanent/PermanentImpl.java +++ b/Mage/src/mage/game/permanent/PermanentImpl.java @@ -594,7 +594,7 @@ public abstract class PermanentImpl> extends CardImpl return false; Permanent attacker = game.getPermanent(attackerId); //20101001 - 509.1b - for (RestrictionEffect effect : game.getContinuousEffects().getApplicableRestrictionEffects(attacker, game)) { + for (RestrictionEffect effect : game.getContinuousEffects().getApplicableRestrictionEffects(this, game)) { if (!effect.canBlock(attacker, this, game)) return false; }