mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00: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…
Reference in a new issue