From 1f162ffcf5f6f04cdfbeb317ba3c207236283234 Mon Sep 17 00:00:00 2001 From: CodeCodon Date: Mon, 13 Jul 2015 14:33:02 -0500 Subject: [PATCH] don't trap script errors for now --- .../library/serverGame/src/shared/core/ConfigServerGame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/library/serverGame/src/shared/core/ConfigServerGame.cpp b/engine/server/library/serverGame/src/shared/core/ConfigServerGame.cpp index c3824942..dcd49bed 100644 --- a/engine/server/library/serverGame/src/shared/core/ConfigServerGame.cpp +++ b/engine/server/library/serverGame/src/shared/core/ConfigServerGame.cpp @@ -67,7 +67,7 @@ void ConfigServerGame::install(void) KEY_BOOL (profileScripts, false); KEY_BOOL (crashOnScriptError, false); KEY_BOOL (compileScripts, true); - KEY_BOOL (trapScriptCrashes, true); + KEY_BOOL (trapScriptCrashes, false); KEY_INT (scriptWatcherWarnTime, 5000); KEY_INT (scriptWatcherInterruptTime, 5000); KEY_INT (scriptStackErrorLimit, 35);