Skip to content

Commit a335961

Browse files
committed
Fix a title screen bug
1 parent 184a722 commit a335961

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DeepBramble/Helpers/TitleScreenHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ public static void FirstTimeTitleEdits()
3232

3333
//Determine if we'll actually want to use this stuff (need to load data early to do this)
3434
StandaloneProfileManager.SharedInstance.Initialize();
35-
bool editsNeeded = true;
35+
bool editsNeeded;
3636
try
3737
{
38-
editsNeeded = PlayerData.GetPersistentCondition("DeepBrambleFound") && !vanillaTitle;
38+
editsNeeded = StandaloneProfileManager.SharedInstance.currentProfileGameSave.GetPersistentCondition("DeepBrambleFound") && !vanillaTitle;
3939
}
4040
catch
4141
{

0 commit comments

Comments
 (0)