2018-09-07 19:07:10 +02:00
|
|
|
const { Command } = require('discord.js-commando');
|
|
|
|
module.exports = class MeowCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
|
|
name: 'meow',
|
2018-09-07 21:28:42 +02:00
|
|
|
group: 'fun',
|
2018-09-07 19:07:10 +02:00
|
|
|
memberName: 'meow',
|
|
|
|
description: 'Replies with a meow, kitty cat.',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
run(message) {
|
|
|
|
return message.say('Meow!');
|
|
|
|
}
|
|
|
|
};
|