From 5eb0a1be7ff0282470b63fbeafbe8fc01acc856d Mon Sep 17 00:00:00 2001 From: pointfeev Date: Wed, 16 Feb 2022 00:22:40 -0500 Subject: [PATCH] fix paradox launcher --- CreamInstaller/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Program.cs b/CreamInstaller/Program.cs index 5532853..ee05f9b 100644 --- a/CreamInstaller/Program.cs +++ b/CreamInstaller/Program.cs @@ -28,7 +28,7 @@ internal static class Program internal static readonly string[] ProtectedGameDirectories = { @"\EasyAntiCheat", @"\BattlEye" }; // DLL detections internal static readonly string[] ProtectedGameDirectoryExceptions = { "Arma 3" }; // Arma 3's BattlEye doesn't detect DLL changes? - internal static readonly string ParadoxLauncherDirectory = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\Programs\Paradox Interactive\launcher"; + internal static readonly string ParadoxLauncherDirectory = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\Programs\Paradox Interactive"; internal static bool IsGameBlocked(string name, string directory) {