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/say.js

23 lines
615 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class sayCommand extends Command {
constructor(client) {
super(client, {
name: 'say',
group: 'fun',
memberName: 'say',
description: `Repeat the text you send`,
args: [
{
key: 'text',
prompt: 'What do you want me to say',
type: 'string',
}
]
});
}
async run(message, { text }) {
message.delete();
message.say(text);
}
};