From 34828b3240714c6c9315042ceb57f8c9f5ede7c5 Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 18 Jul 2024 09:36:21 +0100 Subject: [PATCH] Improved capitalization for error message --- SPTInstaller/Installer Tasks/PreChecks/EftInstalledPreCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPTInstaller/Installer Tasks/PreChecks/EftInstalledPreCheck.cs b/SPTInstaller/Installer Tasks/PreChecks/EftInstalledPreCheck.cs index 3623f56..8adcf24 100644 --- a/SPTInstaller/Installer Tasks/PreChecks/EftInstalledPreCheck.cs +++ b/SPTInstaller/Installer Tasks/PreChecks/EftInstalledPreCheck.cs @@ -16,7 +16,7 @@ public class EftInstalledPreCheck : PreCheckBase { if (_internalData.OriginalGamePath is null || !Directory.Exists(_internalData.OriginalGamePath) || !File.Exists(Path.Join(_internalData.OriginalGamePath, "Escapefromtarkov.exe"))) { - return PreCheckResult.FromError("Your EFT installation could not be found, try running the Battlestate games launcher and ensure EFT is installed on your computer", "Retry", RequestReevaluation); + return PreCheckResult.FromError("Your EFT installation could not be found, try running the Battlestate Games Launcher and ensure EFT is installed on your computer", "Retry", RequestReevaluation); } return PreCheckResult.FromSuccess("EFT install folder found");