debug last commit?

This commit is contained in:
SowinskiBraeden committed 2023-04-03 17:17:35 -07:00
1 parent 4abad2cd1a
commit 2c0c25f55d
3 files changed
+39 -38

No files matched your search

+36 -35
View File
@@ -331,49 +331,50 @@ module.exports = {
} else client.error('exception?');
} else if (args[0].name == 'bot_admin_role') {
if (args[0].options[0].value == 'add') {
const roleId = args[0].options[1].value;
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID},{$push: {"server.botAdminRoles": roleId}}, function(err, res) {
if (err) return client.sendInternalError(interaction, err);
});
const successEmbed = new EmbedBuilder()
.setDescription(`Successfully added <@&${roleId}> as a bot admin role.\nUsers with this role can use restricted commands.`)
.setColor(client.config.Colors.Green);
return interaction.send({ embeds: [successEmbed] });
} else if (args[0].options[0].value== 'remove') {
if (args[0].options[0].value == 'add') {
if (!GuildDB.botADminRoles.includes(args[0].options[1].value)) {
const noRole = new EmbedBuilder()
.setColor(client.config.Colors.Yellow)
.setDescription(`**Notice:**\n> The role <@&${args[0].options[1].value}> has not been configured as a bot admin.`);
const roleId = args[0].options[1].value;
return interaction.send({ embeds: [noRole] });
}
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID},{$push: {"server.botAdminRoles": roleId}}, function(err, res) {
if (err) return client.sendInternalError(interaction, err);
});
const successEmbed = new EmbedBuilder()
.setDescription(`Successfully added <@&${roleId}> as a bot admin role.\nUsers with this role can use restricted commands.`)
.setColor(client.config.Colors.Green);
return interaction.send({ embeds: [successEmbed] });
const prompt = new EmbedBuilder()
.setTitle(`Are you sure you want to remove this role as a bot admin?`)
.setColor(client.config.Colors.Default)
} else if (args[0].options[0].value== 'remove') {
const opt = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
.setCustomId(`RemoveBotAdminRole-yes-${args[0].options[1].value}-${interaction.member.user.id}`)
.setLabel("Yes")
.setStyle(ButtonStyle.Danger),
new ButtonBuilder()
.setCustomId(`RemoveBotAdminRole-no-${args[0].options[1].value}-${interaction.member.user.id}`)
.setLabel("No")
.setStyle(ButtonStyle.Success)
)
if (!GuildDB.botADminRoles.includes(args[0].options[1].value)) {
const noRole = new EmbedBuilder()
.setColor(client.config.Colors.Yellow)
.setDescription(`**Notice:**\n> The role <@&${args[0].options[1].value}> has not been configured as a bot admin.`);
return interaction.send({ embeds: [prompt], components: [opt], flags: (1 << 6) });
return interaction.send({ embeds: [noRole] });
}
const prompt = new EmbedBuilder()
.setTitle(`Are you sure you want to remove this role as a bot admin?`)
.setColor(client.config.Colors.Default)
const opt = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
.setCustomId(`RemoveBotAdminRole-yes-${args[0].options[1].value}-${interaction.member.user.id}`)
.setLabel("Yes")
.setStyle(ButtonStyle.Danger),
new ButtonBuilder()
.setCustomId(`RemoveBotAdminRole-no-${args[0].options[1].value}-${interaction.member.user.id}`)
.setLabel("No")
.setStyle(ButtonStyle.Success)
)
return interaction.send({ embeds: [prompt], components: [opt], flags: (1 << 6) });
}
} else if (args[0].name == 'admin_role') {
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID},{$set: {"server.adminRole": args[0].options[0].value}}, function(err, res) {
if (err) return client.sendInternalError(interaction, err);