some spam prevention

This commit is contained in:
loicbersier 2019-10-05 22:14:23 +02:00
parent 70d1991b25
commit cebc55cd05

View file

@ -38,6 +38,12 @@ class tweetCommand extends Command {
filter.removeWords(...uncensor);
*/
// Don't let account new account use this command to prevent spam
let date = new Date();
if (message.author.createdAt > date.setDate(date.getDate() - 7)) {
return message.channel.send('Your account is too new to be able to use this command!');
}
const blacklist = reload('../../json/twiBlacklist.json');
if (blacklist.includes(message.author.id)) {