diff options
| author | Michael <[email protected]> | 2017-05-27 12:11:36 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-27 12:11:36 -0400 |
| commit | fde832b35763443afdc57dc8a5d82fb3bb25009b (patch) | |
| tree | aad77133d11f5173aedb79eb59dc1a5bb3ad7757 /ShiftOS_TheReturn | |
| parent | 97e22b35ada5898fdcb2556628f764d927cff913 (diff) | |
| download | shiftos_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.cs | 7 |
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; } } |
