From 3ca72b8d64bec18d066b3f487b16b0739124b4b8 Mon Sep 17 00:00:00 2001 From: sasha80 Date: Tue, 29 Oct 2024 08:44:02 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=BA=D0=B0.=20=D0=92=D0=B5=D1=80=D0=BD=D1=83=D1=82=D1=8C=20?= =?UTF-8?q?=D0=B4=D0=BB=D0=B8=D0=BD=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/network.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/network.gd b/scripts/network.gd index f0f3690..0275b90 100644 --- a/scripts/network.gd +++ b/scripts/network.gd @@ -9,7 +9,7 @@ const SERIAL_PROTO: = {'uart': spt25.SPT25 } class Serial extends SerialPort: func send_to(data: PackedByteArray): - write_raw(data) + return write_raw(data) func try_open(parsing_proc: Callable): if not is_open(): open(port)