From 970ee53bfc9bfd472e6308301a09d2c123150e90 Mon Sep 17 00:00:00 2001 From: Frog Date: Wed, 8 Jul 2026 00:38:20 -0700 Subject: [PATCH] Relocate Cooldown Folder/Data Location. - Relocated the cooldown folder from C:\ProgramData\CreamInstaller\cooldown to C:\ProgramData\CreamInstaller\Cache\cooldown (Does not cleanup the old location currently) --- CreamInstaller/Utility/ProgramData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Utility/ProgramData.cs b/CreamInstaller/Utility/ProgramData.cs index 68424ea..1a638e1 100644 --- a/CreamInstaller/Utility/ProgramData.cs +++ b/CreamInstaller/Utility/ProgramData.cs @@ -64,7 +64,7 @@ internal static class ProgramData private static readonly Version MinimumAppInfoVersion = Version.Parse("4.7.0.0"); - internal static readonly string CooldownPath = DirectoryPath + @"\cooldown"; + internal static readonly string CooldownPath = CachePath + @"\cooldown"; private static readonly string OldProgramChoicesPath = DirectoryPath + @"\choices.txt"; private static readonly string ProgramChoicesPath = DirectoryPath + @"\choices.json";