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.
23 lines
605 B
23 lines
605 B
const {Command} = require('../../lib.js')
|
|
|
|
|
|
class prune extends Command{
|
|
constructor(client){
|
|
super(client, {
|
|
name: 'prune',
|
|
group:'admin',
|
|
description: 'Rebuilds the channel it was used in.',
|
|
needsAdmin:true,
|
|
})
|
|
}
|
|
async run(message, args){
|
|
//Check administration privilege
|
|
|
|
let name = message.channel.name;
|
|
|
|
message.channel.clone([name, true, "text"])
|
|
|
|
message.channel.delete();
|
|
}
|
|
}module.exports = prune;
|