mirror of
https://github.com/litruv/DAdmin.git
synced 2026-07-24 02:36:11 +10:00
12 lines
364 B
JavaScript
12 lines
364 B
JavaScript
exports.name = "Clear Messages"
|
|
exports.alias = ['clear']
|
|
exports.helptext = "Clears messages from the channel"
|
|
exports.helphide = false
|
|
exports.permissions = ['VIEW_CHANNEL']
|
|
exports.args = ['number']
|
|
exports.category = 'admin'
|
|
|
|
exports.command = (client, msg) => {
|
|
console.log("Clearing: " + msg.suffix);
|
|
msg.channel.bulkDelete(parseInt(msg.suffix)+1);
|
|
} |