mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Fix crashing
This commit is contained in:
parent
d630abb66a
commit
3ffd813109
2 changed files with 8 additions and 11 deletions
|
@ -29,7 +29,7 @@ namespace HISP.Server
|
|||
|
||||
public static void RegisterCrashHandler()
|
||||
{
|
||||
#if (!DEBUG)
|
||||
#if (!OS_DEBUG)
|
||||
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(HispCrashHandler);
|
||||
#endif
|
||||
}
|
||||
|
@ -77,16 +77,14 @@ namespace HISP.Server
|
|||
Exception execpt = (Exception)e.ExceptionObject;
|
||||
|
||||
|
||||
string crashMsg = becauseRustWont[execpt.GetHashCode() % becauseRustWont.Length] + "\r\n";
|
||||
crashMsg += "HISP HAS CRASHED" + "\r\n";
|
||||
crashMsg += "Build: " + ServerVersion.GetBuildString() + "\r\n";
|
||||
crashMsg += "Unhandled Exception: " + execpt.Message + "\r\n";
|
||||
crashMsg += execpt.StackTrace + "\r\n";
|
||||
string crashMsg = becauseRustWont[execpt.GetHashCode() % becauseRustWont.Length] + "\n";
|
||||
crashMsg += "HISP HAS CRASHED" + "\n";
|
||||
crashMsg += "Build: " + ServerVersion.GetBuildString() + "\n";
|
||||
crashMsg += "Unhandled Exception: " + execpt.Message + "\n";
|
||||
crashMsg += execpt.StackTrace + "\n";
|
||||
|
||||
Logger.CrashPrint(crashMsg);
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -417,8 +417,7 @@ namespace HISP.Server
|
|||
quest.ChainedQuestId = gameData.quest_list[i].chained_questid;
|
||||
quest.Minigame = gameData.quest_list[i].minigame;
|
||||
|
||||
if(quest.Title.Trim() != "")
|
||||
Logger.DebugPrint("Registered Quest: " + quest.Id + " - " + quest.Title);
|
||||
Logger.DebugPrint("Registered Quest: " + quest.Id);
|
||||
Quest.AddQuestEntry(quest);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue