Fix crash that can be caused by the shutdown command. (#5292)

This commit is contained in:
red-001 2017-02-25 08:28:25 +00:00 committed by Loïc Blot
parent 2d1fca51e9
commit 4d634ef675
1 changed files with 2 additions and 1 deletions

View File

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