1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-21 20:10:17 +02:00

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.
This commit is contained in:
Beha 2019-08-07 14:32:40 -04:00 committed by rubenwardy
parent e788ee283f
commit 8ffe95913b

View File

@ -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"