diff options
Diffstat (limited to 'ShiftOS.WinForms')
| -rw-r--r-- | ShiftOS.WinForms/Oobe.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Oobe.cs b/ShiftOS.WinForms/Oobe.cs index 14125dc..55aab7e 100644 --- a/ShiftOS.WinForms/Oobe.cs +++ b/ShiftOS.WinForms/Oobe.cs @@ -197,7 +197,10 @@ namespace ShiftOS.WinForms })); SaveSystem.SaveGame(); Thread.Sleep(5000); - SaveSystem.Restart(); + this.Invoke(new Action(() => + { + TutorialManager.StartTutorial(); + })); })); this.Show(); this.BringToFront(); |
