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/shrug.lua
2015-07-08 03:38:04 -04:00

12 lines
132 B
Lua

local PLUGIN = {}
PLUGIN.triggers = {
'/shrug'
}
function PLUGIN.action(msg)
send_msg(msg, '¯\\_(ツ)_/¯')
end
return PLUGIN