Allow 8 members in league

This commit is contained in:
Kalle
2025-02-01 10:19:26 +02:00
parent b75bb546ad
commit d035873a09

View File

@@ -858,6 +858,8 @@ export class Tournament {
// special format
if (this.minMembersPerTeam !== 4) return this.minMembersPerTeam;
if (this.isLeagueSignup || this.isLeagueDivision) return 8;
const maxMembersBeforeStart = this.isInvitational ? 5 : 6;
if (this.hasStarted) {