forked from Supositware/Haha-Yes
Don't allow tweet with discord.gg
This commit is contained in:
parent
eea7043334
commit
052c72eb17
1 changed files with 3 additions and 0 deletions
|
@ -37,6 +37,7 @@ class tweetCommand extends Command {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
// see if user is not banned
|
// see if user is not banned
|
||||||
const blacklist = await TwitterBlacklist.findOne({where: {userID:message.author.id}});
|
const blacklist = await TwitterBlacklist.findOne({where: {userID:message.author.id}});
|
||||||
|
|
||||||
if (blacklist) {
|
if (blacklist) {
|
||||||
return message.channel.send(`You have been blacklisted for the following reasons: \`\`${blacklist.get('reason')}\`\` be less naughty less time.`);
|
return message.channel.send(`You have been blacklisted for the following reasons: \`\`${blacklist.get('reason')}\`\` be less naughty less time.`);
|
||||||
}
|
}
|
||||||
|
@ -51,6 +52,8 @@ class tweetCommand extends Command {
|
||||||
return message.channel.send('Your account is too new to be able to use this command!');
|
return message.channel.send('Your account is too new to be able to use this command!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (args.text.includes('discord.gg')) return message.channel.send('No discord invite allowed.');
|
||||||
|
|
||||||
if (!Attachment[0] && !args.text) return message.channel.send('You need to input something for me to tweet!');
|
if (!Attachment[0] && !args.text) return message.channel.send('You need to input something for me to tweet!');
|
||||||
|
|
||||||
const client = this.client;
|
const client = this.client;
|
||||||
|
|
Loading…
Reference in a new issue