updates to scoring command
parent
231fb618f6
commit
244cac9204
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue