mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Multiple blocker are listed in blocker damage assign order now in the game log.
This commit is contained in:
parent
d02f272bca
commit
b602b4e160
1 changed files with 1 additions and 1 deletions
|
|
@ -376,7 +376,7 @@ public class Combat implements Serializable, Copyable<Combat> {
|
|||
if (attackerExists) {
|
||||
if (group.getBlockers().size() > 0) {
|
||||
sb.append("blocked by ");
|
||||
for (UUID blockingCreatureId : group.getBlockers()) {
|
||||
for (UUID blockingCreatureId : group.getBlockerOrder()) {
|
||||
Permanent blockingCreature = game.getPermanent(blockingCreatureId);
|
||||
if (blockingCreature != null) {
|
||||
sb.append(blockingCreature.getLogName()).append(" (");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue