This commit is contained in:
kepler155c
2018-11-05 00:26:28 -05:00
parent ed6f95ef94
commit 6de154dc48
5 changed files with 28 additions and 7 deletions

View File

@@ -29,9 +29,16 @@ local function client(socket)
local manipulator = getManipulatorForUser(user)
if not manipulator then
socket:write({
msg = 'Manipulator not found'
})
return
end
socket:write({
data = 'ok',
})
repeat
local data = socket:read()
if not data then