Fix: [NoAI] don't notify caught exceptions

This commit is contained in:
Rasmus Jonsson 2020-10-18 10:46:24 +02:00 committed by Charles Pigott
parent 06adb9ace3
commit 0b2dd2c5cd

View File

@ -478,7 +478,7 @@ void Squirrel::Initialize()
/* Handle compile-errors ourself, so we can display it nicely */
sq_setcompilererrorhandler(this->vm, &Squirrel::CompileError);
sq_notifyallexceptions(this->vm, SQTrue);
sq_notifyallexceptions(this->vm, _debug_script_level > 5);
/* Set a good print-function */
sq_setprintfunc(this->vm, &Squirrel::PrintFunc);
/* Handle runtime-errors ourself, so we can display it nicely */