File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ module.exports = {
18
18
} ) . join ( '\n' )
19
19
20
20
const newEmbed = new EmbedBuilder ( )
21
- . setColor ( 0x0099F )
21
+ . setColor ( 0x8B0000 )
22
22
. setTitle ( 'CURRENT RANKINGS' )
23
23
. setDescription ( 'Top 25 Players' )
24
24
. addFields ( {
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ module.exports = {
123
123
else if ( userData . ELO > 1000 )
124
124
userData . Rank = 'F'
125
125
else
126
- userData . Rank = 'Not Ranked ' // just a check ;)
126
+ userData . Rank = 'N ' // just a check ;)
127
127
128
128
await userData . save ( )
129
129
interaction . followUp ( 'Calculating KDR, ELO & RANK. Saved to database.' )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module.exports = {
32
32
guildId : interaction . guild . id ,
33
33
username : interaction . user . username ,
34
34
ELO : 0 ,
35
- Rank : 'Not Ranked ' ,
35
+ Rank : 'N ' ,
36
36
Kills : 0 ,
37
37
Deaths : 0 ,
38
38
Wins : 0 ,
You can’t perform that action at this time.
0 commit comments