From e19183582479f4059301209479606a8d3ee0f738 Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 6 Nov 2025 13:32:59 +0000 Subject: [PATCH] Improved error message when server fails to start --- SPTarkov.Server/Program.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SPTarkov.Server/Program.cs b/SPTarkov.Server/Program.cs index 3c7c4e3f..e18843c8 100644 --- a/SPTarkov.Server/Program.cs +++ b/SPTarkov.Server/Program.cs @@ -1,6 +1,5 @@ using System.Net; using System.Net.Sockets; -using System.Runtime; using System.Runtime.InteropServices; using System.Security.Authentication; using System.Text; @@ -44,7 +43,9 @@ public static class Program catch (Exception e) { Console.WriteLine("========================================================================================================="); - Console.WriteLine("The server has unexpectedly stopped, please check your log files and reach out to #spt-support in discord"); + Console.WriteLine( + "The server has unexpectedly stopped, reach out to #spt-support in discord, create a support thread by following the instructions found in #support-guidelines. Also include a screenshot of this message + the below error" + ); Console.WriteLine(e); Console.WriteLine("========================================================================================================="); Console.WriteLine("Press any key to exit...");