implemented Damage Assignment Order

This commit is contained in:
BetaSteward 2011-06-16 23:02:24 -04:00
parent 7b511c5e7a
commit f1558a255a
8 changed files with 52 additions and 3 deletions

View file

@ -61,7 +61,7 @@ public class CombatGroupView implements Serializable {
if (attacker != null)
attackers.put(id, new PermanentView(attacker, game.getCard(attacker.getId())));
}
for (UUID id: combatGroup.getBlockers()) {
for (UUID id: combatGroup.getBlockerOrder()) {
Permanent blocker = game.getPermanent(id);
if (blocker != null)
blockers.put(id, new PermanentView(blocker, game.getCard(blocker.getId())));