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