Allow days in uptime

This commit is contained in:
Dragon Fire
2019-10-17 10:29:13 -04:00
parent 41dba97dd9
commit 94821f6f5a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ module.exports = class InfoCommand extends Command {
.addField(' Source Code',
source ? `[Here](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('hh:mm:ss', { trim: false }), true)
.addField(' Uptime', moment.duration(this.client.uptime).format('d:hh:mm:ss'), true)
.addField(' Version', `v${version}`, true)
.addField(' Node Version', process.version, true)
.addField(' Dependencies', this.parseDependencies());
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "107.7.3",
"version": "107.7.4",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {