This commit is contained in:
2023-08-12 18:37:33 +00:00
parent fa96b448b2
commit 9bccc14e13
2 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
const { SlashCommandBuilder } = require('discord.js'); const { SlashCommandBuilder } = require('discord.js');
const { color } = require('../config/options.json'); const { color } = require('../config/options.json');
const { bwfdkr, bwstars, bwwins, duelswins, swstars } = require('../config/reqs.json'); const { bwfkdr, bwstars, bwwins, swstars, duelswins, duelswlr } = require('../config/reqs.json');
module.exports = { module.exports = {
name: 'reqs', name: 'reqs',
@@ -29,7 +29,7 @@ module.exports = {
name: '**Bedwars**', name: '**Bedwars**',
value: '**Stars:** `' + bwstars.toString() + value: '**Stars:** `' + bwstars.toString() +
'`\n**Wins:** `' + bwwins.toString() + '`\n**Wins:** `' + bwwins.toString() +
'`\n**FKDR:** `' + bwfdkr.toString() + '`' '`\n**FKDR:** `' + bwfkdr.toString() + '`'
}, },
{ {
name: '**Skywars**', name: '**Skywars**',
@@ -37,7 +37,8 @@ module.exports = {
}, },
{ {
name: '**Duels**', name: '**Duels**',
value: '**Wins:** `' + duelswins.toString() + '`' value: '**Wins:** `' + duelswins.toString() +
'`\n**WLR:** `' + duelswlr.toString() + '`'
} }
], ],
footer: { footer: {
@@ -47,4 +48,4 @@ module.exports = {
}] }]
}) })
} }
} }

View File

@@ -37,7 +37,7 @@ module.exports = {
const verifyData = await verify.findOne({ userID: user.id }); const verifyData = await verify.findOne({ userID: user.id });
if (verifyData) { if (verifyData) {
interaction.editReply("You are already verified."); interaction.editReply("You are already verified.\n" + "Try running /update to update your roles.")
return; return;
} }