aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-11 17:58:35 -0400
committerMichael <[email protected]>2017-06-11 17:58:35 -0400
commitc0017e35a46eb20e7ba2717009171eedaf9785e7 (patch)
tree0a980b2ecbd368c068a9b15539704f5989095f26 /ShiftOS_TheReturn
parent7ec048fe8536c9757eda47801af07956b826466d (diff)
downloadshiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.tar.gz
shiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.tar.bz2
shiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.zip
Creation of new games is possible again!
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/SaveSystem.cs6
-rw-r--r--ShiftOS_TheReturn/Story.cs1
2 files changed, 5 insertions, 2 deletions
diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs
index b9bef47..a4e79a7 100644
--- a/ShiftOS_TheReturn/SaveSystem.cs
+++ b/ShiftOS_TheReturn/SaveSystem.cs
@@ -527,8 +527,10 @@ namespace ShiftOS.Engine
{
try
{
- Story.Start(CurrentSave.PickupPoint);
- TerminalBackend.PrintPrompt();
+ if (Story.Context == null)
+ {
+ Story.Start(CurrentSave.PickupPoint);
+ }
}
catch { }
}
diff --git a/ShiftOS_TheReturn/Story.cs b/ShiftOS_TheReturn/Story.cs
index c01c055..2b00686 100644
--- a/ShiftOS_TheReturn/Story.cs
+++ b/ShiftOS_TheReturn/Story.cs
@@ -109,6 +109,7 @@ namespace ShiftOS.Engine
{
Thread.Sleep(5000);
}
+ Thread.Sleep(500);
CurrentObjectives.Remove(obj);
obj.Complete();
});