summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin/game/chat.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua
index aae811794..8131a6860 100644
--- a/builtin/game/chat.lua
+++ b/builtin/game/chat.lua
@@ -1070,10 +1070,10 @@ core.register_chatcommand("last-login", {
local pauth = core.get_auth_handler().get_auth(param)
if pauth and pauth.last_login and pauth.last_login ~= -1 then
-- Time in UTC, ISO 8601 format
- return true, "Last login time was " ..
+ return true, param.."'s last login time was " ..
os.date("!%Y-%m-%dT%H:%M:%SZ", pauth.last_login)
end
- return false, "Last login time is unknown"
+ return false, param.."'s last login time is unknown"
end,
})