diff --git a/src/client/commands/status.js b/src/client/commands/status.js index 66eb727..3f9ae9d 100644 --- a/src/client/commands/status.js +++ b/src/client/commands/status.js @@ -14,11 +14,11 @@ module.exports = { .setTitle(message.statusTitle) .setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["logo"].replace(/[^0-9]+/g, '')) .setColor(client.config.embedColor) - .addField(client.messages.statusField1, Date.now() - interaction.createdTimestamp + "ms", true) - .addField(client.messages.statusField2, client.ws.ping + "ms", true) - .addField(client.messages.statusField3, uptime, true) - .addField(client.messages.statusField4, client.config.version, true) - .addField(client.messages.statusField5, client.config.hostedBy, true) + .addField(client.messages.statusField1, uptime, false) + .addField(client.messages.statusField2, client.config.version, false) + .addField(client.messages.statusField3, Date.now() - interaction.createdTimestamp + "ms", false) + .addField(client.messages.statusField4, client.ws.ping + "ms", false) + .addField(client.messages.statusField5, client.config.hostedBy, false) .setImage('https://waren.io/berriabot-temp-sa7a36a9xm6837br/images/empty-3.png') .setFooter(client.messages.footerText, "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, '')); diff --git a/src/client/messages.js b/src/client/messages.js index f893ff8..eb26915 100644 --- a/src/client/messages.js +++ b/src/client/messages.js @@ -29,11 +29,11 @@ module.exports = { sendedMaintenanceMessage: "This bot is going to be under maintenance!", footerText: "EximiaBots by Warén Group", statusTitle: "%client.user.username% Status", - statusField1: "Bot Latency", - statusField2: "API Latency", - statusField3: "Uptime", - statusField4: "Version", - statusField5: "Hosted by", + statusField1: ":clock1: Bot Uptime", + statusField2: ":floppy_disk: Bot Version", + statusField3: ":heartbeat: WebSocket Ping", + statusField4: ":hourglass: Latency", + statusField5: ":globe_with_meridians: Hosted by", errorStationURL: "Station can't be URL", messageCommandsDeprecatedTitle: "%client.user.username%", messageCommandsDeprecatedDescription: "We recommend you to reauthorize our bot by clicking the invite link down below, because Discord is planning to remove message content from verified bots [Read More](https://support-dev.discord.com/hc/en-us/articles/4404772028055)" + "\n\n" + "**Invite Bot**" + "\n" + "https://wgi.fi/radiox_invite" + "\n\n" + "This bot now supports slash commands, you should start using them instead. Type / into the message box and select the bot you wish to use. Remember to be careful as there are a few bugs here and there on Discord." + "\n\n" + "We will remove this deprecation message in March of 2022 when RadioX 1.0.0 is released.",