diff options
| author | Michael <[email protected]> | 2017-05-01 15:23:46 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-01 15:23:46 -0400 |
| commit | 7532df70757ecbcaf735a5fc50eee282f555741a (patch) | |
| tree | bbf4c161697b390a96af01a36277c8dc4e52e1a0 /ShiftOS.WinForms/Oobe.cs | |
| parent | b71cea249357eeb948f94894970a17078a9c5249 (diff) | |
| download | shiftos_thereturn-7532df70757ecbcaf735a5fc50eee282f555741a.tar.gz shiftos_thereturn-7532df70757ecbcaf735a5fc50eee282f555741a.tar.bz2 shiftos_thereturn-7532df70757ecbcaf735a5fc50eee282f555741a.zip | |
Replace most instances of "CurrentSave.Username"
Diffstat (limited to 'ShiftOS.WinForms/Oobe.cs')
| -rw-r--r-- | ShiftOS.WinForms/Oobe.cs | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/ShiftOS.WinForms/Oobe.cs b/ShiftOS.WinForms/Oobe.cs index 54a022c..a4d63e0 100644 --- a/ShiftOS.WinForms/Oobe.cs +++ b/ShiftOS.WinForms/Oobe.cs @@ -185,39 +185,7 @@ You must join the digital society, rise up the ranks, and save us. public void ShowSaveTransfer(Save save) { - this.Show(); - var fSetup = new FakeSetupScreen(this, 7); - - var t = new Thread(() => - { - textgeninput = lblhackwords; - Clear(); - TextType("Welcome back to ShiftOS."); - Thread.Sleep(500); - TextType("Since your last time inside ShiftOS, the operating system has changed. Your user account is no longer stored on your local system."); - Thread.Sleep(500); - this.Invoke(new Action(() => - { - //UPS is drunky heaven over here... it's a liquor store, I think... - Drunk Michael - fSetup.UserReregistered += (u, p, s) => - { - save.Username = u; - save.Password = p; - save.SystemName = s; - SaveSystem.CurrentSave = save; - SaveSystem.CurrentSave.Upgrades = new Dictionary<string, bool>(); - Shiftorium.Init(); - - SaveSystem.SaveGame(); - if(Utils.FileExists(Paths.SaveFileInner)) - Utils.Delete(Paths.SaveFileInner); - this.Close(); - }; - fSetup.Show(); - })); - }); - t.IsBackground = true; - t.Start(); + //Stub. } public void PerformUniteLogin() |
