Добавлена проверка привилегии shout перед отправкой сообщения в телеграмм

This commit is contained in:
bad 2025-01-13 19:48:04 +03:00
parent 3c2cf48e04
commit 86393ccc73

View File

@ -177,7 +177,9 @@ end)
-- Don't send messages from MT to telegram if we don't know where to -- Don't send messages from MT to telegram if we don't know where to
if chat_id then if chat_id then
minetest.register_on_chat_message(function(name, message) minetest.register_on_chat_message(function(name, message)
if minetest.check_player_privs(name, {shout=true}) then
telegram.send_message(chat_id, "<" .. name .. "> " .. message) telegram.send_message(chat_id, "<" .. name .. "> " .. message)
end
return false return false
end) end)