discordjs / Commando

Official command framework for discord.js
Apache License 2.0
496 stars 242 forks source link

Hey, #311

Closed gfxanuj123 closed 4 years ago

gfxanuj123 commented 4 years ago

what should i do if i want to add perms on a specific command like this

if(command === "purge") {
const deleteCount = parseInt(args[0], 10);

if(!deleteCount || deleteCount < 1 || deleteCount > 200)
  return message.reply({embed: {
    color: 3447003,
    description: "i can not delete that much message's!"
  }});

What Should I do?

monbrey commented 4 years ago

The issue tracker is only for bug reports and enhancement suggestions. If you have a question, please ask it in the Discord server instead of opening an issue – you will get redirected there anyway.