reformat: auto format

This commit is contained in:
Baipyrus 2024-02-08 21:11:56 +01:00
parent 5338b56e4c
commit 7a9c2441a3
7 changed files with 171 additions and 175 deletions

View File

@ -53,7 +53,8 @@ export async function execute(interaction) {
step = 'create';
// Create new channel
const channel = await guild.channels.create({
name, type: ChannelType.GuildVoice
name,
type: ChannelType.GuildVoice
});
// Save channel data
@ -104,8 +105,7 @@ export async function execute(interaction) {
// Set reply based on result of deletion
let response = 'Successfully removed';
if (count === 0)
response = 'Failed to remove';
if (count === 0) response = 'Failed to remove';
// Reply to acknowledge command
await interaction.reply({

View File

@ -9,6 +9,5 @@ export async function execute(channel) {
id: channel.id
}
});
if (count > 0)
console.info(`[INFO] Custom VC with ID '${channel.id}' was deleted.`);
if (count > 0) console.info(`[INFO] Custom VC with ID '${channel.id}' was deleted.`);
}

View File

@ -47,7 +47,7 @@ const getChannel = async (member, channels) => {
await VoiceChannel.create({
id: privCh.id,
owner: member.user.id
})
});
return privCh;
};
@ -78,14 +78,13 @@ const leftVoiceChat = async (state) => {
export const name = Events.VoiceStateUpdate;
export async function execute(oldState, newState) {
if (!newState.channel)
return await leftVoiceChat(oldState);
if (!newState.channel) return await leftVoiceChat(oldState);
// Find channel by id, return if not registered for customs
const createCh = await VoiceChannel.findOne({
where: {
id: newState.channel.id,
create: true,
create: true
}
});
if (createCh === null) return;

View File

@ -9,6 +9,5 @@ export async function execute(message) {
id: message.id
}
});
if (count > 0)
console.info(`[INFO] Reaction Roles Message with ID '${message.id}' was deleted.`);
if (count > 0) console.info(`[INFO] Reaction Roles Message with ID '${message.id}' was deleted.`);
}

View File

@ -13,8 +13,7 @@ export const removeSelfRoles = async (interaction, id) => {
// Set reply based on result of deletion
let response = 'Successfully removed';
if (count === 0)
response = 'Failed to remove';
if (count === 0) response = 'Failed to remove';
// Reply to acknowledge command
await interaction.reply({