From: Wuzzy Date: Sat, 14 Mar 2020 14:01:22 +0000 (+0000) Subject: Fix some chatcommands not returning a value (#9503) X-Git-Tag: 5.2.0~71 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1441281809d9961ff7498df86601db151956b030;p=oweals%2Fminetest.git Fix some chatcommands not returning a value (#9503) --- diff --git a/builtin/common/information_formspecs.lua b/builtin/common/information_formspecs.lua index b977e2656..8afa5bc87 100644 --- a/builtin/common/information_formspecs.lua +++ b/builtin/common/information_formspecs.lua @@ -136,14 +136,14 @@ help_command.func = function(name, param) core.show_formspec(name, "__builtin:help_privs", build_privs_formspec(name)) if name ~= admin then - return + return true end end if param == "" or param == "all" then core.show_formspec(name, "__builtin:help_cmds", build_chatcommands_formspec(name)) if name ~= admin then - return + return true end end diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index c7162aae1..fd1379162 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -115,6 +115,7 @@ core.register_chatcommand("me", { privs = {shout=true}, func = function(name, param) core.chat_send_all("* " .. name .. " " .. param) + return true end, }) @@ -919,6 +920,7 @@ core.register_chatcommand("shutdown", { core.chat_send_all("*** Server shutting down (operator request).") end core.request_shutdown(message:trim(), core.is_yes(reconnect), delay) + return true end, }) @@ -1001,6 +1003,7 @@ core.register_chatcommand("clearobjects", { core.clear_objects(options) core.log("action", "Object clearing done.") core.chat_send_all("*** Cleared all objects.") + return true end, })