From 97f0f5529ad0c657c36e9c3d4f8989a7fa024acf Mon Sep 17 00:00:00 2001 From: Layla Manley Date: Sun, 8 Oct 2023 02:54:58 -0400 Subject: [PATCH] iteration --- auth_server.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth_server.lua b/auth_server.lua index 5cc3990..c7016a9 100644 --- a/auth_server.lua +++ b/auth_server.lua @@ -94,7 +94,7 @@ while true do elseif convert_password(request.password) == data.users[request.username].password then local token = generate_token(request.username) - rednet.send(client_id, token) + rednet.send(client_id, token, "auth") log(request.username .. " logged in") else