Fixing daily and ad-hoc tournaments not properly requiring decks to be provided

This commit is contained in:
Christian 'ketura' McCarty
2025-03-28 09:00:00 -05:00
parent af385a7309
commit 4f7408cc9c
2 changed files with 2 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ public class ImmediateRecurringQueue extends AbstractTournamentQueue implements
this.type = Tournament.TournamentType.CONSTRUCTED; this.type = Tournament.TournamentType.CONSTRUCTED;
this.playoff = Tournament.PairingType.SINGLE_ELIMINATION; this.playoff = Tournament.PairingType.SINGLE_ELIMINATION;
this.manualKickoff = false; this.manualKickoff = false;
this.requiresDeck = true;
this.cost = getCost(); this.cost = getCost();
this.minimumPlayers = _playerCap; this.minimumPlayers = _playerCap;
}}; }};

View File

@@ -71,6 +71,7 @@ public class RecurringScheduledQueue extends AbstractTournamentQueue implements
this.type = Tournament.TournamentType.CONSTRUCTED; this.type = Tournament.TournamentType.CONSTRUCTED;
this.playoff = Tournament.PairingType.SINGLE_ELIMINATION; this.playoff = Tournament.PairingType.SINGLE_ELIMINATION;
this.manualKickoff = false; this.manualKickoff = false;
this.requiresDeck = true;
this.cost = getCost(); this.cost = getCost();
this.minimumPlayers = _minimumPlayers; this.minimumPlayers = _minimumPlayers;
}}; }};