Dev
This commit is contained in:
@@ -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 = {
|
|||||||
}]
|
}]
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user