diff --git a/Mage.Sets/src/mage/sets/gatecrash/AlphaAuthority.java b/Mage.Sets/src/mage/sets/gatecrash/AlphaAuthority.java index 2aa4cb6bd08..f7428245351 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/AlphaAuthority.java +++ b/Mage.Sets/src/mage/sets/gatecrash/AlphaAuthority.java @@ -49,6 +49,7 @@ import mage.game.Game; import mage.game.permanent.Permanent; import mage.target.TargetPermanent; import mage.target.common.TargetCreaturePermanent; +import mage.util.CardUtil; /** * @@ -99,7 +100,7 @@ class CantBeBlockedByMoreThanOneAttachedEffect extends ContinuousEffectImpl { if (game.isPaused() || game.isGameOver()) { return; } - choose = !checkBlockRestrictions(game.getPlayer(defenderId), game); - choose |= !checkBlockRequirementsAfter(defender, defender, game); + if (!checkBlockRestrictions(game.getPlayer(defenderId), game)) { + // only human player can decide to do the block in another way + if (player.isHuman()) { + continue; + } + } + + choose = !checkBlockRequirementsAfter(defender, defender, game); } game.fireEvent(GameEvent.getEvent(GameEvent.EventType.DECLARED_BLOCKERS, defenderId, defenderId)); } @@ -266,6 +272,12 @@ public class Combat implements Serializable, Copyable { } } +/** + * Check the block restrictions + * @param player + * @param game + * @return false - if block restrictions were not complied + */ public boolean checkBlockRestrictions(Player player, Game game) { int count = 0; boolean blockWasLegal = true;