From 18f93056b7d882b4dcce4d3afacd1ba6d37d94ac Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 17 Jan 2017 17:26:27 -0500 Subject: Tutorial backend, deletion of Nancy I'll probably do a SaaS webadmin tool for the MUD in ASP.NET someday. --- ShiftOS_TheReturn/SaveSystem.cs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'ShiftOS_TheReturn/SaveSystem.cs') diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index 537b14e..4b5312a 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -149,11 +149,24 @@ namespace ShiftOS.Engine Shiftorium.Init(); - while (CurrentSave.StoryPosition < 5) + while (CurrentSave.StoryPosition < 1) { } + if(CurrentSave.StoryPosition == 1) + { + Desktop.InvokeOnWorkerThread(new Action(() => + { + TutorialManager.StartTutorial(); + })); + + while(CurrentSave.StoryPosition < 2) + { + + } + } + Thread.Sleep(75); -- cgit v1.2.3