Skip to content

Commit ae8dbec

Browse files
committed
[VEX-108]: Fixed GoalInitPopup appearing twice on startup
Also changed Version String
1 parent 3517b77 commit ae8dbec

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

VexTrack/Core/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace VexTrack.Core
66
static class Constants
77
{
88
public static readonly string AppName = "VexTrack";
9-
public static readonly string Version = "v1.86";
9+
public static readonly string Version = "v1.87";
1010

1111
public static readonly string DataFolder = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"/VexTrack - Preview";
1212
public static readonly string LegacyDataFolder = @"dat";

VexTrack/MVVM/ViewModel/MainViewModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ public void Update(bool epilogueOnly = false)
233233
if (InterruptUpdate) return;
234234
if (!ViewModelsInitialized) InitViewModels();
235235

236+
if (InterruptUpdate) return;
237+
236238
if (TrackingDataHelper.CurrentSeasonData.ActiveBPLevel > Constants.BattlepassLevels && SettingsHelper.Data.ForceEpilogue)
237239
{
238240
if (!Epilogue) Epilogue = true;

0 commit comments

Comments
 (0)