This commit is contained in:
2026-05-22 21:08:58 +04:00
parent 2ccfac2d04
commit 6f8195cda1
5 changed files with 17 additions and 13 deletions

View File

@@ -531,7 +531,9 @@ func resolveResetStages(stage string) ([]string, error) {
case "preliminary":
return append([]string{}, preliminaryRoundStages...), nil
case "final":
return append([]string{}, finalRoundStages...), nil
stages := append([]string{}, finalRoundStages...)
stages = append(stages, "final_tiebreak")
return stages, nil
case "prelim_tiebreak", "final_tiebreak":
normalized, err := validateStage(stage)
if err != nil {