From 512a02ba88678cb7ddd65f32245135c8cf2ba1c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 8 Feb 2017 11:20:02 -0500 Subject: Mind my language... We finally fixed the god damn fucking fuckity fucking Tutorial bug. Finally, for fucks sake. --- ShiftOS_TheReturn/SaveSystem.cs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'ShiftOS_TheReturn/SaveSystem.cs') diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index 2e9f9c1..6ab6b1b 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -176,24 +176,27 @@ namespace ShiftOS.Engine Console.WriteLine(" ...{DONE}."); } - Story.Start(); - - Thread.Sleep(50); Console.WriteLine("{SYSTEM_INITIATED}"); TerminalBackend.InStory = false; + TerminalBackend.PrefixEnabled = true; Shiftorium.LogOrphanedUpgrades = true; Desktop.InvokeOnWorkerThread(new Action(() => Desktop.PopulateAppLauncher())); - GameReady?.Invoke(); if (CurrentSave.StoryPosition == 1) { Desktop.InvokeOnWorkerThread(new Action(() => { TutorialManager.StartTutorial(); + })); + while(TutorialManager.IsInTutorial == true) { } + GameReady?.Invoke(); + } + else + { + GameReady?.Invoke(); } - })); thread.IsBackground = true; thread.Start(); -- cgit v1.2.3