We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184a722 commit a335961Copy full SHA for a335961
DeepBramble/Helpers/TitleScreenHelper.cs
@@ -32,10 +32,10 @@ public static void FirstTimeTitleEdits()
32
33
//Determine if we'll actually want to use this stuff (need to load data early to do this)
34
StandaloneProfileManager.SharedInstance.Initialize();
35
- bool editsNeeded = true;
+ bool editsNeeded;
36
try
37
{
38
- editsNeeded = PlayerData.GetPersistentCondition("DeepBrambleFound") && !vanillaTitle;
+ editsNeeded = StandaloneProfileManager.SharedInstance.currentProfileGameSave.GetPersistentCondition("DeepBrambleFound") && !vanillaTitle;
39
}
40
catch
41
0 commit comments