Skip to content

Commit d3142d1

Browse files
committed
Changed "Not Ranked" to N
1 parent a28d299 commit d3142d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

commands/main/leaderboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
}).join('\n')
1919

2020
const newEmbed = new EmbedBuilder()
21-
.setColor(0x0099F)
21+
.setColor(0x8B0000)
2222
.setTitle('CURRENT RANKINGS')
2323
.setDescription('Top 25 Players')
2424
.addFields({

commands/main/modify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ module.exports = {
123123
else if (userData.ELO > 1000)
124124
userData.Rank = 'F'
125125
else
126-
userData.Rank = 'Not Ranked' // just a check ;)
126+
userData.Rank = 'N' // just a check ;)
127127

128128
await userData.save()
129129
interaction.followUp('Calculating KDR, ELO & RANK. Saved to database.')

commands/user/join.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
guildId: interaction.guild.id,
3333
username: interaction.user.username,
3434
ELO: 0,
35-
Rank: 'Not Ranked',
35+
Rank: 'N',
3636
Kills: 0,
3737
Deaths: 0,
3838
Wins: 0,

0 commit comments

Comments
 (0)