some spam prevention

merge-requests/4/head
loicbersier 5 years ago
parent 70d1991b25
commit cebc55cd05

@ -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)) {

Loading…
Cancel
Save