generated from Baipyrus/DiscordJS-Template
reformat: auto format
This commit is contained in:
parent
5338b56e4c
commit
7a9c2441a3
@ -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({
|
||||
|
@ -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.`);
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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.`);
|
||||
}
|
||||
|
@ -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({
|
||||
|
Loading…
Reference in New Issue
Block a user