Fix botcmds.lua

This commit is contained in:
s20 2023-10-31 07:44:29 +05:30 committed by GitHub
parent ae917df471
commit 37e4de86f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ irc.register_bot_command("players", {
end
return true, string.format("%d connected player(s): %s",
#players,
table.concat(names, ", "),
table.concat(names, ", ")
)
end
})