You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/fun/meow.js

15 lines
382 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class MeowCommand extends Command {
constructor(client) {
super(client, {
name: 'meow',
group: 'fun',
memberName: 'meow',
description: 'Replies with a meow, kitty cat.',
});
}
run(message) {
return message.say('Meow!');
}
};