little changes
This commit is contained in:
parent
f595cb1c85
commit
cc76046156
@ -47,6 +47,7 @@ function msg_valid(msg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function do_lex(msg, text)
|
function do_lex(msg, text)
|
||||||
|
-- Plugins which implements lex.
|
||||||
for name, desc in pairs(plugins) do
|
for name, desc in pairs(plugins) do
|
||||||
if (desc.lex ~= nil) then
|
if (desc.lex ~= nil) then
|
||||||
result = desc.lex(msg, text)
|
result = desc.lex(msg, text)
|
||||||
@ -64,9 +65,9 @@ function do_action(msg)
|
|||||||
local receiver = get_receiver(msg)
|
local receiver = get_receiver(msg)
|
||||||
local text = msg.text
|
local text = msg.text
|
||||||
|
|
||||||
if msg.text == nil then
|
if text == nil then
|
||||||
-- Not a text message, make text the same as what tg shows so
|
-- Not a text message, make text the same as what tg shows so
|
||||||
-- we can match on it. The plugin is resposible for handling
|
-- we can match on it. Maybe a plugin activated my media type.
|
||||||
if msg.media ~= nil then
|
if msg.media ~= nil then
|
||||||
text = '['..msg.media.type..']'
|
text = '['..msg.media.type..']'
|
||||||
end
|
end
|
||||||
@ -149,10 +150,13 @@ function create_config( )
|
|||||||
config = {
|
config = {
|
||||||
enabled_plugins = {
|
enabled_plugins = {
|
||||||
"9gag",
|
"9gag",
|
||||||
|
"eur",
|
||||||
"echo",
|
"echo",
|
||||||
|
"btc",
|
||||||
"get",
|
"get",
|
||||||
"giphy",
|
"giphy",
|
||||||
"google",
|
"google",
|
||||||
|
"gps",
|
||||||
"help",
|
"help",
|
||||||
"images",
|
"images",
|
||||||
"img_google",
|
"img_google",
|
||||||
@ -164,6 +168,7 @@ function create_config( )
|
|||||||
"time",
|
"time",
|
||||||
"version",
|
"version",
|
||||||
"weather",
|
"weather",
|
||||||
|
"xkcd",
|
||||||
"youtube" },
|
"youtube" },
|
||||||
sudo_users = {our_id}
|
sudo_users = {our_id}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user