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
2015-07-08 03:58:54 -04:00

12 lines
135 B
Lua

local PLUGIN = {}
PLUGIN.triggers = {
'/lenny'
}
function PLUGIN.action(msg)
send_msg(msg, '( ͡° ͜ʖ ͡°)')
end
return PLUGIN