From b8df61dcc20cd34e81436ae05d372bfd549b7181 Mon Sep 17 00:00:00 2001 From: Sacha Ligthert Date: Mon, 15 Jan 2024 22:12:54 +0100 Subject: [PATCH] Prevent the listener from throwing an error when the scenario ends. --- Export.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Export.lua b/Export.lua index c480a90..ac06c43 100644 --- a/Export.lua +++ b/Export.lua @@ -28,7 +28,7 @@ end function LuaExportStop() -- Terminate TCP connection if MySocket then - socket.try(MySocket:send("exit\n")) + --socket.try(MySocket:send("exit\n")) MySocket:close() end end