changed over = to :, whoops

This commit is contained in:
2019-03-18 06:38:40 +11:00
parent 467dc136ff
commit f4601a7974
25 changed files with 194 additions and 190 deletions

View File

@@ -1,11 +1,11 @@
module.exports = {
name = 'Get auto voice',
alias =['getautovoice'],
helptext = 'Set the auto-sorting channel',
helphide = false,
permissions =['READ_MESSAGES'],
category = 'admin',
command = (client, msg) => {
name: 'Get auto voice',
alias: ['getautovoice'],
helptext: 'Set the auto-sorting channel',
helphide: false,
permissions: ['READ_MESSAGES'],
category: 'admin',
command: (client, msg) => {
client.database.get_setting("autoVoice", msg.guild.id).then((r) => {
msg.reply(`${r} - ${msg.guild.channels.get(r).name}`);
});