mirror of
https://github.com/minetest/minetest.git
synced 2024-11-20 06:33:45 +01:00
Sort clients in minetest.get_server_status
and privs in minetest.privs_to_string
(#15023)
This commit is contained in:
parent
6cc0452503
commit
b2f6a65bc9
@ -702,6 +702,7 @@ function core.privs_to_string(privs, delim)
|
||||
list[#list + 1] = priv
|
||||
end
|
||||
end
|
||||
table.sort(list)
|
||||
return table.concat(list, delim)
|
||||
end
|
||||
|
||||
|
@ -221,6 +221,7 @@ core.register_chatcommand("haspriv", {
|
||||
return true, S("No online player has the \"@1\" privilege.",
|
||||
param)
|
||||
else
|
||||
table.sort(players_with_priv)
|
||||
return true, S("Players online with the \"@1\" privilege: @2",
|
||||
param,
|
||||
table.concat(players_with_priv, ", "))
|
||||
|
@ -3181,14 +3181,11 @@ std::string Server::getStatusString()
|
||||
bool first = true;
|
||||
os << " | clients: ";
|
||||
if (m_env) {
|
||||
std::vector<session_t> clients = m_clients.getClientIDs();
|
||||
for (session_t client_id : clients) {
|
||||
RemotePlayer *player = m_env->getPlayer(client_id);
|
||||
std::vector<std::string> player_names = m_clients.getPlayerNames();
|
||||
|
||||
// Get name of player
|
||||
const std::string name = player ? player->getName() : "<unknown>";
|
||||
std::sort(player_names.begin(), player_names.end());
|
||||
|
||||
// Add name to information string
|
||||
for (const std::string& name : player_names) {
|
||||
if (!first)
|
||||
os << ", ";
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user