updates to scoring command

pull/29/head
Matthew 2020-09-13 22:24:24 -04:00
parent 231fb618f6
commit 244cac9204
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 3 additions and 3 deletions

View File

@ -106,9 +106,9 @@ export default class Score extends Command {
if (score.total >= 700) { color = '🟢'; embed.setColor('66FF66'); } if (score.total >= 700) { color = '🟢'; embed.setColor('66FF66'); }
embed.addField('Total | 200 to 800', `${color} ${totalScore}`, true); embed.addField('Total | 200 to 800', `${color} ${totalScore}`, true);
embed.addField(`Activity | 10 to ${Math.floor(Math.log1p(5000 + 300 + 200 + 100) * 12)}`, activityScore, true); embed.addField(`Activity | 10 to ${Math.floor(Math.log1p(5000 + 300 + 200 + 100) * 12)}`, activityScore, true);
embed.addField('Roles | 1 to 54', roleScore, true); embed.addField('Roles | 1 to N/A', roleScore, true);
embed.addField('Moderation | -50 to 2', moderationScore, true); embed.addField('Moderation | N/A to 2', moderationScore, true);
embed.addField('Cloud Services | N/A to 21', cloudServicesScore, true); embed.addField('Cloud Services | N/A to 10', cloudServicesScore, true);
embed.addField('Misc', miscScore, true); embed.addField('Misc', miscScore, true);
if (score.lastUpdate) { if (score.lastUpdate) {
embed.setFooter('Report last updated', this.client.user.avatarURL); embed.setFooter('Report last updated', this.client.user.avatarURL);