1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00

Update status.js

This commit is contained in:
Matte 2019-12-24 15:21:34 +02:00
parent decc53083f
commit cce24d05a1

View File

@ -5,23 +5,13 @@ module.exports = {
cooldown: 5, cooldown: 5,
onlyDev: false, onlyDev: false,
execute(message, args, client, Discord, prefix) { execute(message, args, client, Discord, prefix) {
let rawUptime = client.uptime; const uptime = client.funcs.msToTime(client.uptime);
let uptime = {}; const ping = Math.floor(client.ping * 10) / 10;
uptime['d'] = rawUptime / 86400000;
uptime['h'] = rawUptime / 3600000;
uptime['m'] = rawUptime / 60000;
let finalUptime;
if (uptime.d < 1) {
finalUptime = `${Math.round(uptime.h * 10) / 10} hours`;
} else {
finalUptime = `${Math.round(uptime.d * 10) / 10} days`;
}
let ping = Math.floor(client.ping * 10) / 10;
const embed = new Discord.RichEmbed() const embed = new Discord.RichEmbed()
.setTitle(`Status for ${client.user.username}`) .setTitle(`Status for ${client.user.username}`)
.addField(':signal_strength: Ping', ping, true) .addField(':signal_strength: Ping', ping, true)
.addField(':stopwatch: Uptime', finalUptime, true) .addField(':stopwatch: Uptime', uptime, true)
.addField(`:play_pause: Currently playing music on`, `${client.voiceConnections.size} guild(s)`, true) .addField(`:play_pause: Currently playing music on`, `${client.voiceConnections.size} guild(s)`, true)
.addField(`💿 Operating system`, process.platform, true) .addField(`💿 Operating system`, process.platform, true)
.setAuthor(client.user.username, client.user.displayAvatarURL) .setAuthor(client.user.username, client.user.displayAvatarURL)