From cd929485d04d3a15f81ace7f4e044e06b19260e9 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Thu, 3 Oct 2024 12:46:39 +0200 Subject: [PATCH] bump settings version --- ModpackUpdater.Apps.Client/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModpackUpdater.Apps.Client/Program.cs b/ModpackUpdater.Apps.Client/Program.cs index 9483531..a8a76b1 100644 --- a/ModpackUpdater.Apps.Client/Program.cs +++ b/ModpackUpdater.Apps.Client/Program.cs @@ -50,7 +50,7 @@ public static class Program Application.Run(new Form1(updateOptions)); } - private static string GetSettingsPath(int? settingsVersion = 2) + private static string GetSettingsPath(int? settingsVersion = 3) { const string AppDataDirectoryName = "MinecraftModpackUpdater"; var fileNamePostfix = settingsVersion == null ? string.Empty : $"V{settingsVersion}";