From 8faa3e8bd51df794b2aa379aca17c4e9dbe54313 Mon Sep 17 00:00:00 2001 From: MistEO Date: Thu, 22 Sep 2022 18:02:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=85=B3=E5=8D=A1=E5=AF=BC=E8=88=AA=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MeoAsstGui/Helper/StageManager.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/MeoAsstGui/Helper/StageManager.cs b/src/MeoAsstGui/Helper/StageManager.cs index c4924fcd14..63901de8eb 100644 --- a/src/MeoAsstGui/Helper/StageManager.cs +++ b/src/MeoAsstGui/Helper/StageManager.cs @@ -45,14 +45,15 @@ namespace MeoAsstGui _stages = new Dictionary { - // SideStory「长夜临光」复刻活动 - { "NL-10", new StageInfo { Display = "NL-10", Value = "NL-10", Activity = sideStory } }, - { "NL-9", new StageInfo { Display = "NL-9", Value = "NL-9", Activity = sideStory } }, - { "NL-8", new StageInfo { Display = "NL-8", Value = "NL-8", Activity = sideStory } }, - + // 这里会被 “剩余理智” 复用,第一个必须是 string.Empty 的 // 「当前/上次」关卡导航 { string.Empty, new StageInfo { Display = Localization.GetString("DefaultStage"), Value = string.Empty } }, + // SideStory「长夜临光」复刻活动 + { "NL-8", new StageInfo { Display = "NL-8", Value = "NL-8", Activity = sideStory } }, + { "NL-9", new StageInfo { Display = "NL-9", Value = "NL-9", Activity = sideStory } }, + { "NL-10", new StageInfo { Display = "NL-10", Value = "NL-10", Activity = sideStory } }, + // 主线关卡 { "1-7", new StageInfo { Display = "1-7", Value = "1-7" } },