Skip to content

Commit

Permalink
/shutdown can't do countdown when using reconnect and/or shutdown mes…
Browse files Browse the repository at this point in the history
…sage (#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.
  • Loading branch information
dopik authored and SmallJoker committed Jun 3, 2018
1 parent 858c41b commit f8cc92c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/game/chatcommands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,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")
Expand Down

0 comments on commit f8cc92c

Please sign in to comment.