fixed issue 142 - damage assignment order now works with tokens

This commit is contained in:
BetaSteward 2011-06-17 23:41:32 -04:00
parent 82654f10d5
commit 4dc0c33819
11 changed files with 49 additions and 16 deletions

View file

@ -881,9 +881,9 @@ public class ComputerPlayer<T extends ComputerPlayer<T>> extends PlayerImpl<T> i
}
@Override
public UUID chooseBlockerOrder(Cards blockers, Game game) {
public UUID chooseBlockerOrder(List<Permanent> blockers, Game game) {
//TODO: improve this
return blockers.iterator().next();
return blockers.iterator().next().getId();
}
@Override