mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
fixed issue 142 - damage assignment order now works with tokens
This commit is contained in:
parent
82654f10d5
commit
4dc0c33819
11 changed files with 49 additions and 16 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue