ef5469f62a
fewer parsing errors with dogify help now triggered with /start
18 lines
199 B
Lua
18 lines
199 B
Lua
local PLUGIN = {}
|
|
|
|
PLUGIN.triggers = {
|
|
'/shrug'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
if msg.reply_to_message then
|
|
msg = msg.reply_to_message
|
|
end
|
|
|
|
send_msg(msg, '¯\\_(ツ)_/¯')
|
|
|
|
end
|
|
|
|
return PLUGIN
|