iteration

This commit is contained in:
2023-10-08 03:24:17 -04:00
parent d147fe682c
commit c9e6e5d229
2 changed files with 5 additions and 5 deletions

View File

@@ -117,8 +117,11 @@ while true do
["token"] = request.token
}, "auth")
authID, auth_response = rednet.receive("auth")
log_debug("Auth response: " .. auth_response)
local responseServerID = nil
while responseServerID ~= authID do
responseServerID, auth_response = rednet.receive("auth")
end
local errorPos, errorEnd = string.find(auth_response, "invalid")
if errorPos then
log("Error: " .. auth_response)