mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Small fix for AsThoughEffectType.BLOCK_TAPPED.
This commit is contained in:
parent
53f37c5a6e
commit
2b78cbf958
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue