This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/lenny.lua

18 lines
202 B
Lua
Raw Normal View History

2015-07-08 09:58:54 +02:00
local PLUGIN = {}
PLUGIN.triggers = {
'/lenny'
}
function PLUGIN.action(msg)
if msg.reply_to_message then
msg = msg.reply_to_message
end
2015-07-08 09:58:54 +02:00
send_msg(msg, '( ͡° ͜ʖ ͡°)')
2015-07-08 09:58:54 +02:00
end
return PLUGIN