From: dopik <33575686+dopik@users.noreply.github.com> Date: Mon, 19 Feb 2018 07:41:44 +0000 (+0100) Subject: /shutdown can't do countdown when using reconnect and/or shutdown message (#7055) X-Git-Tag: 5.0.0~574 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cf98f5bbc03c41501f15a76c039b15735d53f18e;p=oweals%2Fminetest.git /shutdown can't do countdown when using reconnect and/or shutdown message (#7055) Delay was converted from the param string and not the delay value, thus never using the actual given delay value when used in combination with other string values in the param, in this case reconnect and the shutdown messsage. --- diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index 136e45a9a..e349eec7e 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -828,7 +828,7 @@ core.register_chatcommand("shutdown", { message = message or "" if delay ~= "" then - delay = tonumber(param) or 0 + delay = tonumber(delay) or 0 else delay = 0 core.log("action", name .. " shuts down server")