Skip to content

Commit cea848c

Browse files
committed
Fix file check
1 parent f9f5eff commit cea848c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClientUpdater/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static void Main(string[] args)
1111
{
1212
Console.WriteLine("This program will download the latest UNSTABLE version and replace your current LMPClient");
1313

14-
if (!File.Exists(Path.Combine(Directory.GetCurrentDirectory(), "KSP_x64.exe")) || !File.Exists(Path.Combine(Directory.GetCurrentDirectory(), "KSP.x86_64")))
14+
if (!File.Exists(Path.Combine(Directory.GetCurrentDirectory(), "KSP_x64.exe")) && !File.Exists(Path.Combine(Directory.GetCurrentDirectory(), "KSP.x86_64")))
1515
Console.WriteLine("Please drop \"Client LMP Updater\" in the main KSP folder next to KSP.x86_64/KSP_x64.exe!");
1616
else
1717
{

0 commit comments

Comments
 (0)