mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Add support for the new arguments of request_shutdown
to the /shutdown
chatcommand. (#5252)
This commit is contained in:
parent
d0ce27edd8
commit
3d25914986
1 changed files with 3 additions and 1 deletions
|
@ -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,
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue