don't let new account use this command
This commit is contained in:
parent
cebc55cd05
commit
68a45d5de6
1 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,12 @@ class FeedbackCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message,args) {
|
async exec(message,args) {
|
||||||
|
// 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 channel = this.client.channels.get(feedbackChannel);
|
const channel = this.client.channels.get(feedbackChannel);
|
||||||
|
|
||||||
const Embed = new MessageEmbed()
|
const Embed = new MessageEmbed()
|
||||||
|
|
Loading…
Reference in a new issue