From 266407c3c4b900a7466770140c5cb5eeddda14cd Mon Sep 17 00:00:00 2001 From: Li Date: Fri, 11 Nov 2022 19:12:16 +1300 Subject: [PATCH] Fix resources --- HorseIsleServer/LibHISP/Server/Entry.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/HorseIsleServer/LibHISP/Server/Entry.cs b/HorseIsleServer/LibHISP/Server/Entry.cs index 9d73d60..86ea0ee 100755 --- a/HorseIsleServer/LibHISP/Server/Entry.cs +++ b/HorseIsleServer/LibHISP/Server/Entry.cs @@ -84,7 +84,14 @@ namespace HISP.Server crashMsg += execpt.StackTrace + "\r\n"; Logger.CrashPrint(crashMsg); - + + try + { + GameServer.ShutdownServer(); + } + catch (Exception) { }; + + } } }