Skip to content

Commit c3303c9

Browse files
committed
move UnstableRate
1 parent fd36609 commit c3303c9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

AquaMai.Config/Migration/ConfigMigration_V2_3_V2_4.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ public ConfigView Migrate(ConfigView src)
4949
dst.Remove("GameSystem.AdxHidInput.Io4Compact");
5050
}
5151

52+
if (src.IsSectionEnabled("GameSystem.UnstableRate"))
53+
{
54+
dst.EnsureDictionary("Utils.UnstableRate");
55+
dst.Remove("GameSystem.UnstableRate");
56+
}
57+
5258
return dst;
5359
}
5460
}
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
using Process;
77
using UnityEngine;
88

9-
namespace AquaMai.Mods.GameSystem;
9+
namespace AquaMai.Mods.Utils;
1010

1111
[ConfigSection(
12-
name: "UnstableRate",
12+
name: "稳定度指示器",
13+
zh: "在屏幕中心显示每个击打的确切时间信息",
1314
en: "Show information about the exact timing for each hit during gameplay in the center of the screen.")]
1415
public class UnstableRate
1516
{

0 commit comments

Comments
 (0)