We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce58f50 commit aec66c8Copy full SHA for aec66c8
1 file changed
MaiChartManager/Services/MaidataImportService.cs
@@ -380,6 +380,11 @@ public ImportChartResult ImportMaidata(
380
var levelNumStr = maiData.GetValueOrDefault($"lv_{level}");
381
if (!string.IsNullOrWhiteSpace(levelNumStr))
382
{
383
+ if (isUtage && !char.IsDigit(levelNumStr[0]))
384
+ {
385
+ music.UtageKanji = levelNumStr;
386
+ levelNumStr = levelNumStr.Substring(1).Replace("?", ""); // 为了处理类似“奏13+?”这种情况,留下13+给后面的逻辑处理
387
+ }
388
levelNumStr = levelNumStr.Replace("+", ".7");
389
}
390
0 commit comments