aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-07 08:22:52 -0500
committerMichael <[email protected]>2017-03-07 08:22:52 -0500
commita28a68bcf8ef5e1e9d7d049d8d25515f43d5407f (patch)
tree0edc5a8e3e5ad226ac4916e430abab8a8da13850 /ShiftOS_TheReturn
parent01530d637d790a101ea4dcb0e183664420d98ff9 (diff)
downloadshiftos_thereturn-a28a68bcf8ef5e1e9d7d049d8d25515f43d5407f.tar.gz
shiftos_thereturn-a28a68bcf8ef5e1e9d7d049d8d25515f43d5407f.tar.bz2
shiftos_thereturn-a28a68bcf8ef5e1e9d7d049d8d25515f43d5407f.zip
story IDs are now treated as shiftorium upgrades
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/Shiftorium.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Shiftorium.cs b/ShiftOS_TheReturn/Shiftorium.cs
index ab95f43..24fa123 100644
--- a/ShiftOS_TheReturn/Shiftorium.cs
+++ b/ShiftOS_TheReturn/Shiftorium.cs
@@ -204,6 +204,9 @@ namespace ShiftOS.Engine
}
try
{
+ if (SaveSystem.CurrentSave.StoriesExperienced.Contains(id))
+ return true;
+
return SaveSystem.CurrentSave.Upgrades[id];
}
catch