aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-27 12:11:36 -0400
committerMichael <[email protected]>2017-05-27 12:11:36 -0400
commitfde832b35763443afdc57dc8a5d82fb3bb25009b (patch)
treeaad77133d11f5173aedb79eb59dc1a5bb3ad7757 /ShiftOS_TheReturn
parent97e22b35ada5898fdcb2556628f764d927cff913 (diff)
downloadshiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.tar.gz
shiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.tar.bz2
shiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.zip
simplesrc refurbishment
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/Story.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/ShiftOS_TheReturn/Story.cs b/ShiftOS_TheReturn/Story.cs
index bcee49c..d62dae4 100644
--- a/ShiftOS_TheReturn/Story.cs
+++ b/ShiftOS_TheReturn/Story.cs
@@ -66,8 +66,11 @@ namespace ShiftOS.Engine
var story = attrib as StoryAttribute;
if(story.StoryID == stid)
{
- mth.Invoke(null, null);
- SaveSystem.CurrentSave.StoriesExperienced.Add(stid);
+ new Thread(() =>
+ {
+ mth.Invoke(null, null);
+ SaveSystem.CurrentSave.StoriesExperienced.Add(stid);
+ }).Start();
return;
}
}