Skip to content

Commit

Permalink
Refactor KiaiConsistencyCheck difficulty name formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaaronc committed Feb 29, 2024
1 parent 48c7699 commit 9fe0325
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Checks/Timing/KiaiConsistencyCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ Kiais should generally be consistent across difficulties (except in GDs)."
{
_MINOR,
new IssueTemplate(LEVEL_MINOR,
"{0}",
"List of Difficulty Names")
"Group {0}: ({1})",
"Kiai Group #",
"List of Difficulties")
.WithCause("Kiai start and end times are not aligned across difficulties.")
}
};
Expand Down Expand Up @@ -77,7 +78,8 @@ public override IEnumerable<Issue> GetIssues(BeatmapSet beatmapSet)
yield return new Issue(
GetTemplate(_MINOR),
null,
"Group " + (i + 1).ToString() + ": (" + string.Join(", ", diffNameStrings[i]) + ")"
(i + 1).ToString(),
string.Join(", ", diffNameStrings[i])
);
}
}
Expand Down

0 comments on commit 9fe0325

Please sign in to comment.