fix: 修复默认关卡不正确的问题

This commit is contained in:
MistEO
2022-07-25 21:40:32 +08:00
parent bb07197823
commit 51cb30cfd8

View File

@@ -302,7 +302,7 @@ namespace MeoAsstGui
}
if (!hasSavedValue)
{
Stage = "DefaultStage";
Stage = String.Empty;
}
}
@@ -1064,7 +1064,7 @@ namespace MeoAsstGui
set { SetAndNotify(ref _stageList, value); }
}
private string _stage = ViewStatusStorage.Get("MainFunction.Stage", "LastBattle");
private string _stage = ViewStatusStorage.Get("MainFunction.Stage", String.Empty);
public string Stage
{