fix: 토너먼트 예선 8명 기록을 보존

This commit is contained in:
2026-08-17 15:28:29 +00:00
parent 50e7d894e4
commit 15c5c1c98f
6 changed files with 63 additions and 9 deletions
+4 -1
View File
@@ -195,17 +195,20 @@ export const assignManualApplicantGroup = (options: {
extraSeed: `manual-group:${options.current.map((entry) => entry.id).join('-')}:${openGroupIds.join('-')}`,
});
const groupId = rng.choice(openGroupIds);
const groupNo = groupCounts[groupId] ?? 0;
return {
...options.applicant,
groupId,
groupNo: groupCounts[groupId] ?? 0,
groupNo,
win: 0,
draw: 0,
lose: 0,
gl: 0,
seedRank: 0,
finalRank: 0,
preliminaryGroupId: groupId,
preliminaryGroupNo: groupNo,
};
};