mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Tournament - Show players of tournament sorted by their tournament points.
This commit is contained in:
parent
e40b44ed79
commit
2b2594d993
4 changed files with 15 additions and 7 deletions
|
|
@ -59,13 +59,13 @@ import org.apache.log4j.Logger;
|
|||
public abstract class TournamentImpl implements Tournament {
|
||||
|
||||
protected UUID id = UUID.randomUUID();
|
||||
protected List<Round> rounds = new CopyOnWriteArrayList<Round>();
|
||||
protected Map<UUID, TournamentPlayer> players = new HashMap<UUID, TournamentPlayer>();
|
||||
protected List<Round> rounds = new CopyOnWriteArrayList<>();
|
||||
protected Map<UUID, TournamentPlayer> players = new HashMap<>();
|
||||
protected static Random rnd = new Random();
|
||||
protected String matchName;
|
||||
protected TournamentOptions options;
|
||||
protected TournamentType tournamentType;
|
||||
protected List<ExpansionSet> sets = new ArrayList<ExpansionSet>();
|
||||
protected List<ExpansionSet> sets = new ArrayList<>();
|
||||
protected String setsInfoShort;
|
||||
|
||||
protected TableEventSource tableEventSource = new TableEventSource();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue