Fix softlock when creating new saves.
This commit is contained in:
parent
75ed7e9215
commit
64f491ff28
2 changed files with 4 additions and 4 deletions
|
@ -316,7 +316,9 @@ You must join the digital society, rise up the ranks, and save us.
|
|||
{
|
||||
sve.StoryPosition = 8675309;
|
||||
SaveSystem.CurrentSave = sve;
|
||||
Shiftorium.Silent = true;
|
||||
SaveSystem.SaveGame();
|
||||
Shiftorium.Silent = false;
|
||||
|
||||
});
|
||||
}
|
||||
|
|
|
@ -141,11 +141,9 @@ namespace ShiftOS.WinForms
|
|||
Console.WriteLine();
|
||||
Console.WriteLine("Next, let's get user information.");
|
||||
Console.WriteLine();
|
||||
Desktop.InvokeOnWorkerThread(() =>
|
||||
{
|
||||
ShiftOS.Engine.OutOfBoxExperience.PromptForLogin();
|
||||
});
|
||||
ShiftOS.Engine.OutOfBoxExperience.PromptForLogin();
|
||||
}
|
||||
|
||||
private static bool isValid(string text, string chars)
|
||||
{
|
||||
foreach(var c in text)
|
||||
|
|
Reference in a new issue