mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-31 18:31:04 +00:00
Fix crash that can be caused by the shutdown command. (#5292)
This commit is contained in:
parent
2d1fca51e9
commit
4d634ef675
1 changed files with 2 additions and 1 deletions
|
@ -842,7 +842,8 @@ core.register_chatcommand("shutdown", {
|
|||
core.log("action", name .. " shuts down server")
|
||||
core.chat_send_all("*** Server shutting down (operator request).")
|
||||
local reconnect, message = param:match("([^ ]+)(.*)")
|
||||
core.request_shutdown(message:trim(), minetest.is_yes(reconnect))
|
||||
message = message or ""
|
||||
core.request_shutdown(message:trim(), core.is_yes(reconnect))
|
||||
end,
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue