mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
- Attempt to fix blocker targeting arrows without breaking the combat log.
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user