From: red-001 Date: Sat, 18 Feb 2017 11:16:11 +0000 (+0000) Subject: Add support for the new arguments of `request_shutdown` to the `/shutdown` chatcomman... X-Git-Tag: 0.4.16~432 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3d25914986845dcb789d372ec7c20d15e310572a;p=oweals%2Fminetest.git Add support for the new arguments of `request_shutdown` to the `/shutdown` chatcommand. (#5252) --- diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index 08dc1bb1d..54cd6c325 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -836,11 +836,13 @@ core.register_chatcommand("days", { core.register_chatcommand("shutdown", { description = "Shutdown server", + params = "[reconnect] [message]", privs = {server=true}, func = function(name, param) core.log("action", name .. " shuts down server") - core.request_shutdown() core.chat_send_all("*** Server shutting down (operator request).") + local reconnect, message = param:match("([^ ]+)(.*)") + core.request_shutdown(message:trim(), minetest.is_yes(reconnect)) end, })