Format Style Fixes
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user