소스 검색

Prevent the listener from throwing an error when the scenario ends.

Sacha Ligthert 2 년 전
부모
커밋
b8df61dcc2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Export.lua

+ 1 - 1
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