From 8ffe95913b717f516cc2c231f3189a20997d24c1 Mon Sep 17 00:00:00 2001 From: Beha Date: Wed, 7 Aug 2019 14:32:40 -0400 Subject: [PATCH] Fix usage of wrong variable in builtin chat command handling (#8762) This was introduced in commit 8e75785 and resulted in chat commands not returning their output text. --- builtin/game/chatcommands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index f05ca0bfd..b2a49863e 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -29,7 +29,7 @@ core.register_on_chat_message(function(name, message) core.set_last_run_mod(cmd_def.mod_origin) local _, result = cmd_def.func(name, param) if result then - core.chat_send_player(name, message) + core.chat_send_player(name, result) end else core.chat_send_player(name, "You don't have permission"