fixed issue 160

This commit is contained in:
BetaSteward 2011-06-17 10:29:50 -04:00
parent 35f1a63c4e
commit a0192c0e47
4 changed files with 8 additions and 4 deletions

View file

@ -64,10 +64,11 @@ public abstract class DraftImpl<T extends DraftImpl<T>> implements Draft {
protected transient TableEventSource tableEventSource = new TableEventSource();
protected transient PlayerQueryEventSource playerQueryEventSource = new PlayerQueryEventSource();
public DraftImpl(DraftOptions options) {
public DraftImpl(DraftOptions options, List<ExpansionSet> sets) {
id = UUID.randomUUID();
this.setCodes = options.getSetCodes();
this.timing = options.getTiming();
this.sets = sets;
}
@Override