- Attempt to fix blocker targeting arrows without breaking the combat log.

This commit is contained in:
Agetian
2014-09-22 17:50:09 +00:00
parent 86ecc75dbe
commit b357f88a8c
3 changed files with 41 additions and 8 deletions

View File

@@ -244,7 +244,7 @@ public enum TargetingOverlay {
});
}
for (final CardView attackingCard : combat.getAttackers()) {
final Iterable<CardView> cards = combat.getBlockers(attackingCard);
final Iterable<CardView> cards = combat.getPlannedBlockers(attackingCard);
if (cards == null) continue;
for (final CardView blockingCard : cards) {
if (!attackingCard.equals(c) && !blockingCard.equals(c)) { continue; }