Compare commits

...

2 Commits

Author SHA1 Message Date
Dev
65a63e09ed Improved error message text 2024-07-17 22:43:01 +01:00
Dev
16576d3a81 Fixed typo 2024-07-16 12:04:00 +01:00
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("EFT files was missing a Vital file to continue"); return Result.FromError("Vital EFT files were not found. The installer is unable to continue. Please reinstall EFT and try again.");
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 the folder doesn't contain an existing spt install"); "Install location is a folder that has existing game files. Please make sure 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}");