summaryrefslogtreecommitdiff
path: root/builtin/client/chatcommands.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/client/chatcommands.lua')
-rw-r--r--builtin/client/chatcommands.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/builtin/client/chatcommands.lua b/builtin/client/chatcommands.lua
index 7a1b4b6b7..bb5b905d8 100644
--- a/builtin/client/chatcommands.lua
+++ b/builtin/client/chatcommands.lua
@@ -34,3 +34,18 @@ core.register_on_sending_chat_messages(function(message)
return true
end)
+
+core.register_chatcommand("list_players", {
+ description = "List online players",
+ func = function(param)
+ local players = table.concat(core.get_player_names(), ", ")
+ core.display_chat_message("Online players: " .. players)
+ end
+})
+
+core.register_chatcommand("disconnect", {
+ description = "Exit to main menu",
+ func = function(param)
+ core.disconnect()
+ end,
+})