Add extra formatting for the leaderboard
This commit is contained in:
parent
c039f3e2e4
commit
7de1d065dd
|
@ -15,9 +15,16 @@ module.exports = {
|
||||||
let desc = '';
|
let desc = '';
|
||||||
|
|
||||||
for (let i = 0; i < leaderboard.length; i++) {
|
for (let i = 0; i < leaderboard.length; i++) {
|
||||||
let newLine = '';
|
|
||||||
newLine = newLine.concat((i + 1), '. \t', leaderboard[i].username, ' - ', leaderboard[i].count, ' games\n');
|
let newLine = String.prototype.concat('#', (i + 1), ' \t', leaderboard[i].username, ' - ', leaderboard[i].count, ' games');
|
||||||
desc = desc.concat(newLine);
|
|
||||||
|
if (i == 0) newLine = String.prototype.concat('**', newLine, '**');
|
||||||
|
|
||||||
|
if (leaderboard[i].username == interaction.user.username) newLine = String.prototype.concat('*', newLine, '*');
|
||||||
|
|
||||||
|
newLine = String.prototype.concat('\n', newLine);
|
||||||
|
|
||||||
|
desc = String.prototype.concat(desc, newLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
const embed = new EmbedBuilder()
|
const embed = new EmbedBuilder()
|
||||||
|
|
Loading…
Reference in New Issue