Haha-Yes/commands/fun/say.js

27 lines
771 B
JavaScript
Raw Normal View History

2018-09-18 15:35:06 +02:00
const { Command } = require('discord.js-commando');
2018-10-15 20:23:45 +02:00
const blacklist = require('../../json/blacklist.json')
2018-09-18 15:35:06 +02:00
module.exports = class sayCommand extends Command {
constructor(client) {
super(client, {
name: 'say',
group: 'fun',
memberName: 'say',
2018-09-22 17:14:33 +02:00
description: `Repeat the text you send`,
2018-09-18 15:35:06 +02:00
args: [
{
key: 'text',
prompt: 'What do you want me to say',
type: 'string',
}
]
});
}
async run(message, { text }) {
2018-10-15 20:23:45 +02:00
if(blacklist[message.author.id])
return message.channel.send("You are blacklisted")
2018-09-18 15:35:06 +02:00
message.delete();
message.say(text);
}
};