From 2815e3283b25a6d50d73a888287cb9a13a4c6dce Mon Sep 17 00:00:00 2001 From: Sophie Marie Date: Wed, 4 Jan 2023 20:51:46 -0600 Subject: [PATCH] Rename info to about, Replace Tux with Xenia --- commands/{info.js => about.js} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename commands/{info.js => about.js} (92%) diff --git a/commands/info.js b/commands/about.js similarity index 92% rename from commands/info.js rename to commands/about.js index c87efd7..b732990 100644 --- a/commands/info.js +++ b/commands/about.js @@ -2,8 +2,8 @@ const Uptime = require('../functions/uptime.js'); const os = require('os'); const osu = require('node-os-utils'); module.exports = { - name: 'info', - description: 'Bot and System information', + name: 'about', + description: 'About this bot, as well as the system its running on', options: [], async parseMessage (client, config, message) { @@ -40,7 +40,7 @@ module.exports = { { name: ':timer: Bot Uptime', value: Uptime(client.uptime), inline: true }, { name: ':one: Total Servers', value: `** **${client.guilds.cache.size}`, inline: true }, { name: '<:hostinfo:997565639352926250> System Information', value: '** **' }, - { name: `${((process.platform === 'linux') ? '<:linux_tux:997565742960615424>' : '<:windows:997919047511453696>')} System Platform`, value: process.platform, inline: true }, + { name: `${((process.platform === 'linux') ? '<:linux_xenia_trans:1060380032788353144>' : '<:windows:997919047511453696>')} System Platform`, value: process.platform, inline: true }, { name: `${((process.platform === 'linux') ? ':gear: Kernel Version' : ':gear: System Version')}`, value: os.release(), inline: true }, { name: ':timer: System Uptime', value: Uptime(os.uptime() * 1000), inline: true }, { name: '<:cpu:997565592028598282> System CPU Architecture', value: os.arch(), inline: true },