forked from Supositware/Haha-Yes
23 lines
No EOL
606 B
JavaScript
23 lines
No EOL
606 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`,
|
|
args: [
|
|
{
|
|
key: 'text',
|
|
prompt: 'What do you want me to say',
|
|
type: 'string',
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(message, { text }) {
|
|
message.delete();
|
|
message.say(text);
|
|
}
|
|
}; |