fix: Исправлена ошибка в слове при логировании Squirrel

This commit is contained in:
AURUMVORXX
2025-11-09 17:11:19 +05:00
parent 098d7d4bb1
commit a1bb30fb72

View File

@@ -1,7 +1,7 @@
function _message_call(data) function _message_call(data)
{ {
local compile_string = "try { " + data["code"] + " } catch(id) { print(\"[PyG2O] Error white executing the code: \" + id); return null; }"; local compile_string = "try { " + data["code"] + " } catch(id) { print(\"[PyG2O] Error while executing the code: \" + id); return null; }";
local result = compilestring(compile_string)(); local result = compilestring(compile_string)();
_send({"event": "sq_response", "uuid": data["uuid"], "data": result}); _send({"event": "sq_response", "uuid": data["uuid"], "data": result});
} }