From a1bb30fb72c316054a806159280e57333d0b025a Mon Sep 17 00:00:00 2001 From: AURUMVORXX Date: Sun, 9 Nov 2025 17:11:19 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B0?= =?UTF-8?q?=20=D0=B2=20=D1=81=D0=BB=D0=BE=D0=B2=D0=B5=20=D0=BF=D1=80=D0=B8?= =?UTF-8?q?=20=D0=BB=D0=BE=D0=B3=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B8=20Squirrel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/server/messages.nut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/server/messages.nut b/include/server/messages.nut index 0fffa5a..a6f468e 100644 --- a/include/server/messages.nut +++ b/include/server/messages.nut @@ -1,7 +1,7 @@ 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)(); _send({"event": "sq_response", "uuid": data["uuid"], "data": result}); }