From 91d2e664c4ebfbd2d62a590f077f842943054b78 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 27 Feb 2020 11:26:53 -0500 Subject: [PATCH] Make info Source/Invite sections clearer --- commands/util/info.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/util/info.js b/commands/util/info.js index 214f464c..dfae3854 100644 --- a/commands/util/info.js +++ b/commands/util/info.js @@ -27,9 +27,9 @@ module.exports = class InfoCommand extends Command { .addField('❯ Servers', formatNumber(this.client.guilds.cache.size), true) .addField('❯ Shards', formatNumber(this.client.options.shardCount), true) .addField('❯ Commands', formatNumber(this.client.registry.commands.size), true) - .addField('❯ Home Server', this.client.options.invite ? `[Here](${this.client.options.invite})` : 'None', true) + .addField('❯ Home Server', this.client.options.invite ? `[Invite](${this.client.options.invite})` : 'None', true) .addField('❯ Source Code', - source ? `[Here](https://github.com/${XIAO_GITHUB_REPO_USERNAME}/${XIAO_GITHUB_REPO_NAME})` : 'N/A', true) + source ? `[Github](https://github.com/${XIAO_GITHUB_REPO_USERNAME}/${XIAO_GITHUB_REPO_NAME})` : 'N/A', true) .addField('❯ Memory Usage', `${Math.round(process.memoryUsage().heapUsed / 1024 / 1024)}MB`, true) .addField('❯ Uptime', moment.duration(this.client.uptime).format('d:hh:mm:ss'), true) .addField('❯ Version', `v${version}`, true) diff --git a/package.json b/package.json index f7e5e828..b56c8c42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "110.9.1", + "version": "110.9.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {