Browse Source

Change `last-login` command to show player name in output (#10263)

Emojigit 3 years ago
parent
commit
abfea69e5f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      builtin/game/chat.lua

+ 2 - 2
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,
 })