Advertisement
ii_kinqm1ke

Bans

Jun 5th, 2020
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const cmds = new discord.command.CommandGroup({
  2.   defaultPrefix: '>' // You can customize your default prefix here.
  3. });
  4.  
  5. cmds.raw('bans', async (msg) => {
  6.   const guild = await msg.getGuild();
  7.   const bans = await guild.getBans();
  8.   await msg.reply(`There are ${bans.length} bans!`);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement