Multiple blocker are listed in blocker damage assign order now in the game log.

This commit is contained in:
LevelX2 2014-08-18 00:47:44 +02:00
parent d02f272bca
commit b602b4e160

View file

@ -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(" (");