forked from Supositware/Haha-Yes
very yes
This commit is contained in:
parent
c0d25dc4a5
commit
58249a09ba
1 changed files with 15 additions and 0 deletions
15
commands/fun/yes.js
Normal file
15
commands/fun/yes.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const { Command } = require('discord.js-commando');
|
||||
module.exports = class YesCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'yes',
|
||||
group: 'fun',
|
||||
memberName: 'yes',
|
||||
description: 'very yes',
|
||||
});
|
||||
}
|
||||
|
||||
run(message) {
|
||||
return message.say('haha very yes');
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue