AbilityPicker shows abilities now always in the order they were defined on the object.

This commit is contained in:
LevelX2 2012-10-10 20:43:18 +02:00
parent 4dfadb3ea1
commit 7c44b16504
9 changed files with 29 additions and 28 deletions

View file

@ -385,7 +385,7 @@ public class GameController implements GameCallback {
}
private synchronized void chooseAbility(UUID playerId, final Collection<? extends Ability> choices) throws MageException {
private synchronized void chooseAbility(UUID playerId, final List<? extends Ability> choices) throws MageException {
perform(playerId, new Command() {
public void execute(UUID playerId) {
gameSessions.get(playerId).chooseAbility(new AbilityPickerView(choices));