added help and say commands
This commit is contained in:
parent
66e3d8c2d2
commit
ae1f1eac43
3 changed files with 97 additions and 0 deletions
7
commands/say.js
Normal file
7
commands/say.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
module.exports = {
|
||||
name: 'say',
|
||||
description: 'Repeats arguments',
|
||||
execute(message, args) {
|
||||
message.channel.send(args.join(" "))
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue