Compare commits

..

No commits in common. "65a63e09edeae5353b7db1e19bbd66873fd7f847" and "0a0615813c7e60d1f3f2aadbcfb3fd5fd90e5b9d" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public static class ProcessHelper
return Result.FromError("Patchers Folder called 'SPT_Patches' is missing"); return Result.FromError("Patchers Folder called 'SPT_Patches' is missing");
case PatcherExitCode.MissingFile: case PatcherExitCode.MissingFile:
return Result.FromError("Vital EFT files were not found. The installer is unable to continue. Please reinstall EFT and try again."); return Result.FromError("EFT files was missing a Vital file to continue");
case PatcherExitCode.PatchFailed: case PatcherExitCode.PatchFailed:
return Result.FromError("A patch failed to apply"); return Result.FromError("A patch failed to apply");

View File

@ -38,7 +38,7 @@ public class InitializationTask : InstallerTaskBase
if (File.Exists(Path.Join(_data.TargetInstallPath, "EscapeFromTarkov.exe"))) if (File.Exists(Path.Join(_data.TargetInstallPath, "EscapeFromTarkov.exe")))
{ {
return Result.FromError( return Result.FromError(
"Install location is a folder that has existing game files. Please make sure the folder doesn't contain an existing SPT install"); "Install location is a folder that has existing game files. Please make the folder doesn't contain an existing spt install");
} }
return Result.FromSuccess($"Current Game Version: {_data.OriginalGameVersion}"); return Result.FromSuccess($"Current Game Version: {_data.OriginalGameVersion}");