Small fix for AsThoughEffectType.BLOCK_TAPPED.

This commit is contained in:
LevelX2 2014-01-21 13:41:22 +01:00
parent 53f37c5a6e
commit 2b78cbf958

View file

@ -912,7 +912,7 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
@Override @Override
public boolean canBlockAny(Game game) { public boolean canBlockAny(Game game) {
if (tapped) { if (tapped && !game.getState().getContinuousEffects().asThough(this.getId(), AsThoughEffectType.BLOCK_TAPPED, game)) {
return false; return false;
} }