diff options
Diffstat (limited to 'commands/say.js')
| -rw-r--r-- | commands/say.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/commands/say.js b/commands/say.js new file mode 100644 index 0000000..914a393 --- /dev/null +++ b/commands/say.js @@ -0,0 +1,11 @@ +module.exports = { + name: 'say', + description: '', + execute(msg, args, bot) { + if (msg.member.hasPermission('KICK_MEMBERS')) { + m = args.join(' '); + msg.channel.send(m); + msg.delete(); + } + } +}
\ No newline at end of file |