From 36eb823b1cebc92cd7802368ab0bdc5b3679a3cd Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Thu, 19 Apr 2018 18:36:10 +0200 Subject: [PATCH] Builtin auth handler: Speed up file writing (#7252) --- builtin/game/auth.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/game/auth.lua b/builtin/game/auth.lua index 3d4d6b199..ad2f35a13 100644 --- a/builtin/game/auth.lua +++ b/builtin/game/auth.lua @@ -42,13 +42,13 @@ local function save_auth_file() assert(type(stuff.privileges) == "table") assert(stuff.last_login == nil or type(stuff.last_login) == "number") end - local content = "" + local content = {} for name, stuff in pairs(auth_table) do local priv_string = core.privs_to_string(stuff.privileges) local parts = {name, stuff.password, priv_string, stuff.last_login or ""} - content = content .. table.concat(parts, ":") .. "\n" + content[#content + 1] = table.concat(parts, ":") end - if not core.safe_file_write(auth_file_path, content) then + if not core.safe_file_write(auth_file_path, table.concat(content, "\n")) then error(auth_file_path.." could not be written to") end end