This commit is contained in:
d0k3 2018-02-26 23:29:00 +01:00
parent 988f2634b0
commit 3671e2eb8e

View File

@ -1702,7 +1702,7 @@ bool ExecuteGM9Script(const char* path_script) {
// run command // run command
char err_str[_ERR_STR_LEN+1] = { 0 }; char err_str[_ERR_STR_LEN+1] = { 0 };
bool result = run_line(ptr, line_end, &flags, err_str, false); result = run_line(ptr, line_end, &flags, err_str, false);
// skip state handling // skip state handling
@ -1756,9 +1756,8 @@ bool ExecuteGM9Script(const char* path_script) {
} }
if (!(flags & _FLG('o'))) { // failed if not optional if (!(flags & _FLG('o'))) { // failed if not optional
for_handler(NULL, NULL, NULL, false); // make sure we don't have an open 'for' for_handler(NULL, NULL, NULL, false); // make sure we don't have an open 'for'
result = false; // we failed
break; break;
} } else result = true; // set back the result otherwise
} }
// reposition pointer // reposition pointer