From 8831ab9f823e7de63e80b7508cd8f4512b467b49 Mon Sep 17 00:00:00 2001 From: MysticMia <65396931+MysticMia@users.noreply.github.com> Date: Sat, 19 Oct 2024 03:36:18 +0200 Subject: [PATCH 1/2] Update voiceChannelLeave.js Remove Nickname from embed description, to match voiceChannelJoin (nick is still in embed title so no difference) --- src/bot/events/voiceChannelLeave.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot/events/voiceChannelLeave.js b/src/bot/events/voiceChannelLeave.js index 0a407df..e6d47ce 100644 --- a/src/bot/events/voiceChannelLeave.js +++ b/src/bot/events/voiceChannelLeave.js @@ -14,7 +14,7 @@ module.exports = { name: `${member.username}#${member.discriminator} ${member.nick ? `(${member.nick})` : ''}`, icon_url: member.avatarURL }, - description: `**${member.username}#${member.discriminator}** ${member.nick ? `(${member.nick})` : ''} left ${channel.type !== 13 ? 'voice' : 'stage'} channel: ${channel.name}.`, + description: `**${member.username}#${member.discriminator}** left ${channel.type !== 13 ? 'voice' : 'stage'} channel: ${channel.name}.`, fields: [{ name: 'Channel', value: `<#${channel.id}> (${channel.name})` From 983cecbdd46da70624153c445cee0ae2bb7f2704 Mon Sep 17 00:00:00 2001 From: MysticMia <65396931+MysticMia@users.noreply.github.com> Date: Sat, 19 Oct 2024 03:36:54 +0200 Subject: [PATCH 2/2] Update voiceChannelSwitch.js Remove Nickname from embed description, to match voiceChannelJoin (nick is still in embed title so no difference) --- src/bot/events/voiceChannelSwitch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot/events/voiceChannelSwitch.js b/src/bot/events/voiceChannelSwitch.js index d890caf..3bb206b 100644 --- a/src/bot/events/voiceChannelSwitch.js +++ b/src/bot/events/voiceChannelSwitch.js @@ -13,7 +13,7 @@ module.exports = { name: `${member.username}#${member.discriminator} ${member.nick ? `(${member.nick})` : ''}`, icon_url: member.avatarURL }, - description: `**${member.username}#${member.discriminator}** ${member.nick ? `(${member.nick})` : ''} moved from <#${oldChannel.id}> (${oldChannel.name}) to <#${channel.id}> (${channel.name}).`, + description: `**${member.username}#${member.discriminator}** moved from <#${oldChannel.id}> (${oldChannel.name}) to <#${channel.id}> (${channel.name}).`, fields: [{ name: 'Current channel they are in', value: `<#${channel.id}> (${channel.name})`