Format Style Fixes

This commit is contained in:
sp-tarkov-bot
2025-12-31 10:07:02 +00:00
parent e2c180306c
commit a6de0d662d
+7 -4
View File
@@ -42,16 +42,19 @@ public static class Program
}
catch (Exception e)
{
if (e.Message.Contains("could not load file or assembly 'sptarkov.server.core, version=", StringComparison.InvariantCultureIgnoreCase))
if (
e.Message.Contains(
"could not load file or assembly 'sptarkov.server.core, version=",
StringComparison.InvariantCultureIgnoreCase
)
)
{
Console.WriteLine(
"========================================================================================================="
);
Console.BackgroundColor = ConsoleColor.DarkRed;
Console.ForegroundColor = ConsoleColor.Black;
Console.WriteLine(
"You may have installed a mod that needs a newer version of of SPT installed. Please try updating SPT"
);
Console.WriteLine("You may have installed a mod that needs a newer version of of SPT installed. Please try updating SPT");
Console.ResetColor();
Console.WriteLine(e);