From 9d3d8d109c4636215020973c3e4171ce223ea740 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Thu, 27 Nov 2025 17:05:27 -0500 Subject: [PATCH] Don't prompt to go to support on missing dependencies. --- SPTarkov.Server/Program.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/SPTarkov.Server/Program.cs b/SPTarkov.Server/Program.cs index baaa6f6c..5dbea83d 100644 --- a/SPTarkov.Server/Program.cs +++ b/SPTarkov.Server/Program.cs @@ -44,19 +44,22 @@ public static class Program { if (e.Message.Contains("could not load file or assembly", StringComparison.InvariantCultureIgnoreCase)) { - var requirementName = e.Message; Console.WriteLine( "=========================================================================================================" ); Console.BackgroundColor = ConsoleColor.DarkRed; Console.ForegroundColor = ConsoleColor.Black; Console.WriteLine( - "You may have forgotten to install a requirement for one of your mods, please check the mod page again and install any requirements listed. Read the error message below CAREFULLY for the name of the mod you need to install" + "You may have forgotten to install a requirement for one of your mods, please check the mod page again and install any dependencies listed. Read the below error message CAREFULLY to find the name of the mod you need to install" ); + Console.ResetColor(); + Console.WriteLine(e); Console.WriteLine( "=========================================================================================================" ); + + return; } Console.WriteLine("=========================================================================================================");