Finish MPN00Bs

This commit is contained in:
Li 2022-07-22 18:57:53 +12:00
parent b439ad1511
commit b83960d872
22 changed files with 720 additions and 155 deletions

View file

@ -67,10 +67,10 @@ namespace HISP.Server
Exception execpt = (Exception)e.ExceptionObject;
string crashMsg = "HISP HAS CRASHED :(";
crashMsg += "Build: " + ServerVersion.GetBuildString();
crashMsg += "Unhandled Exception: " + execpt.Message;
crashMsg += execpt.StackTrace;
string crashMsg = "HISP HAS CRASHED :(" + "\n";
crashMsg += "Build: " + ServerVersion.GetBuildString() + "\n";
crashMsg += "Unhandled Exception: " + execpt.Message + "\n";
crashMsg += execpt.StackTrace + "\n";
Logger.CrashPrint(crashMsg);