diff --git a/src/structure/components/settings/moderation/Mute.js b/src/structure/components/settings/moderation/Mute.js index 5695622..1f0edae 100644 --- a/src/structure/components/settings/moderation/Mute.js +++ b/src/structure/components/settings/moderation/Mute.js @@ -250,7 +250,7 @@ class MuteSetting extends Setting { const configuration = channel.type === 'GUILD_TEXT' ? { permissions: { SEND_MESSAGES: false, ADD_REACTIONS: false }, bitwise: 0x800n } - : { permissions: { CONNECT: false }, bitwise: 0x100000n }; + : { permissions: { CONNECT: false, SEND_MESSAGES: false, ADD_REACTIONS: false }, bitwise: 0x100000n }; try { await channel.permissionOverwrites.create(role, configuration.permissions, { reason: super.reason(user) });