From 986d0b7fb49d021887b1abced0bce202154c3266 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sun, 22 Nov 2020 15:03:41 +0100 Subject: [PATCH] How did i fucking miss this --- commands/general/tweet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/general/tweet.js b/commands/general/tweet.js index 5d41b667..cd90a5f4 100644 --- a/commands/general/tweet.js +++ b/commands/general/tweet.js @@ -46,7 +46,7 @@ class tweetCommand extends Command { const blacklist = await TwitterBlacklist.findOne({where: {userID:message.author.id}}); 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 next time.`); } // Don't let account new account use this command to prevent spam if (message.author.createdAt > date.setDate(date.getDate() - 7)) { @@ -191,4 +191,4 @@ class tweetCommand extends Command { } } -module.exports = tweetCommand; \ No newline at end of file +module.exports = tweetCommand;