2018-09-08 02:31:48 +02:00
|
|
|
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',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-09 21:32:08 +02:00
|
|
|
async run(message) {
|
2018-09-08 02:31:48 +02:00
|
|
|
return message.say('haha very yes');
|
|
|
|
}
|
|
|
|
};
|