diff --git a/commands/util/info.js b/commands/util/info.js index b543658f..1f60ec9e 100644 --- a/commands/util/info.js +++ b/commands/util/info.js @@ -33,9 +33,9 @@ module.exports = class InfoCommand extends Command { .addField('Shards', `${this.client.options.shardCount} (${this.client.shard.id})`, true) .addField('Commands', - '109', true) + this.client.registry.commands.size, true) .addField('Owner', - 'dragonfire535#8081', true) + this.client.owners.map(o => o.tag).join(', '), true) .addField('Source Code', '[View Here](https://github.com/dragonfire535/xiaobot)', true) .addField('Memory Usage', diff --git a/index.js b/index.js index 4a820bfe..ed7366b0 100644 --- a/index.js +++ b/index.js @@ -3,8 +3,9 @@ const request = require('superagent'); const path = require('path'); const client = new CommandoClient({ commandPrefix: 'x;', - owner: process.env.OWNER_ID, - disableEveryone: true + owner: '242699360352206850', + disableEveryone: true, + invite: 'https://discord.gg/fqQF8mc' }); client.registry diff --git a/package.json b/package.json index 411fc6f4..5307a011 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "31.0.0", + "version": "31.1.0", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": {