mirror of
https://github.com/litruv/DAdmin.git
synced 2026-07-24 10:46:14 +10:00
10 lines
354 B
JavaScript
10 lines
354 B
JavaScript
exports.name = 'Set auto voice'
|
|
exports.alias = ['setautovoice']
|
|
exports.helptext = 'Sets the auto-sorting voice channel'
|
|
exports.helphide = false
|
|
exports.permissions = ['ADMINISTRATOR']
|
|
exports.args = ['VChannelID']
|
|
exports.category = 'admin'
|
|
exports.command = (client, msg) => {
|
|
client.database.set_setting(msg.guild.id, "autoVoice", msg.suffix);
|
|
} |