Add support for the new arguments of `request_shutdown` to the `/shutdown` chatcommand. (#5252)

This commit is contained in:
red-001 2017-02-18 11:16:11 +00:00 committed by Loïc Blot
parent d0ce27edd8
commit 3d25914986
1 changed files with 3 additions and 1 deletions

View File

@ -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,
})