aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Oobe.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Oobe.cs')
-rw-r--r--ShiftOS.WinForms/Oobe.cs34
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()