Added as thought effect to let creatures block tapped.

This commit is contained in:
LevelX2 2013-08-03 20:14:11 +02:00
parent 024a1fac9a
commit 4a28881f71
10 changed files with 194 additions and 52 deletions

View file

@ -1701,7 +1701,7 @@ public class ComputerPlayer<T extends ComputerPlayer<T>> extends PlayerImpl<T> i
}
protected List<Permanent> getOpponentBlockers(UUID opponentId, Game game) {
FilterCreatureForCombat blockFilter = new FilterCreatureForCombat();
FilterCreatureForCombatBlock blockFilter = new FilterCreatureForCombatBlock();
List<Permanent> blockers = game.getBattlefield().getAllActivePermanents(blockFilter, opponentId, game);
return blockers;
}