(final Card card)
| 421 | } |
| 422 | |
| 423 | public final CardCollection getBlockers(final Card card) { |
| 424 | // If requesting the ordered blocking list pass true, directly. |
| 425 | return getBlockers(getBandOfAttacker(card)); |
| 426 | } |
| 427 | public final CardCollection getBlockers(final AttackingBand band) { |
| 428 | Collection<Card> blockers = blockedBands.get().get(band); |
| 429 | return blockers == null ? new CardCollection() : new CardCollection(blockers); |