19 lines
919 B
JavaScript
19 lines
919 B
JavaScript
const { SlashCommandBuilder, MessageFlags, EmbedBuilder } = require('discord.js');
|
||
const { updateBlacklistJSON } = require("../../utils.js");
|
||
const { tournaments, blacklist, whitelist } = require("../../index.js");
|
||
|
||
module.exports = {
|
||
data: new SlashCommandBuilder()
|
||
.setName('add_to_blacklist')
|
||
.setDescription('Добавить игрока в черный список, чтобы он не смог участвовать в локальных турнирах')
|
||
.addUserOption(option =>
|
||
option.setName('user')
|
||
.setDescription('Пользователь, с которым ассоциируется данный игрок')
|
||
.setRequired(true)),
|
||
async execute(interaction) {
|
||
blacklist.add(interaction.options.getUser('user').id);
|
||
interaction.reply({ content: `Готово`, flags: MessageFlags.Ephemeral });
|
||
updateBlacklistJSON();
|
||
},
|
||
};
|