From a28a68bcf8ef5e1e9d7d049d8d25515f43d5407f Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 7 Mar 2017 08:22:52 -0500 Subject: [PATCH] story IDs are now treated as shiftorium upgrades --- ShiftOS_TheReturn/Shiftorium.cs | 3 +++ 1 file changed, 3 insertions(+) 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