You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
452 B

const {Command} = require('../../lib.js')
class prune extends Command{
constructor(client){
super(client, {
name: 'deletechannel',
aliases:['delchannel'],
description: 'Deletes the channel it was used in.',
needsAdmin:true,
})
}
async run(message, args){
return message.channel.delete()
}
}module.exports = prune;