Fix softlock when creating new saves.

This commit is contained in:
Michael 2017-05-08 12:09:45 -04:00
parent 75ed7e9215
commit 64f491ff28
2 changed files with 4 additions and 4 deletions

View file

@ -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;
});
}

View file

@ -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)