4
This commit is contained in:
parent
5df1aee8ae
commit
7a1dd8fa56
@ -10,8 +10,7 @@ module.exports = {
|
|||||||
.setName('addmembro')
|
.setName('addmembro')
|
||||||
.setDescription('Adiciona o servidor à base de dados.')
|
.setDescription('Adiciona o servidor à base de dados.')
|
||||||
.addUserOption(option =>
|
.addUserOption(option =>
|
||||||
option
|
option.setName('nome')
|
||||||
.setName('nome')
|
|
||||||
.setDescription('The member to ban')
|
.setDescription('The member to ban')
|
||||||
.setRequired(true)
|
.setRequired(true)
|
||||||
)
|
)
|
||||||
@ -29,7 +28,7 @@ module.exports = {
|
|||||||
),
|
),
|
||||||
async execute(interaction) {
|
async execute(interaction) {
|
||||||
const nome = interaction.options.getString('nome');
|
const nome = interaction.options.getString('nome');
|
||||||
const target = interaction.options.getUser('target');
|
const target = interaction.options.getUser('cargo');
|
||||||
const raça = interaction.options.getString('raça') ?? 'No reason provided';
|
const raça = interaction.options.getString('raça') ?? 'No reason provided';
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user