From 60e138ecb8663633935bddbb9aab3c59fc5429c4 Mon Sep 17 00:00:00 2001 From: theimperious1 Date: Thu, 3 Oct 2024 09:03:40 -0400 Subject: [PATCH] lint is bad mkay how do i make this do it automatically mkay --- src/discord/commands/guild/d.say.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/discord/commands/guild/d.say.ts b/src/discord/commands/guild/d.say.ts index 84a6c8260..b6d6c5996 100644 --- a/src/discord/commands/guild/d.say.ts +++ b/src/discord/commands/guild/d.say.ts @@ -44,8 +44,8 @@ export const dSay: SlashCommand = { // Ensure only moderators can use /say in announcements if ( - channel.type === ChannelType.GuildAnnouncement && - !member.roles.cache.has(env.ROLE_MODERATOR) + channel.type === ChannelType.GuildAnnouncement + && !member.roles.cache.has(env.ROLE_MODERATOR) ) { await interaction.editReply({ content: 'Only moderators can use this command in announcement channels!' }); return false; @@ -53,12 +53,12 @@ export const dSay: SlashCommand = { // Ensure that the channel used is a text channel if ( - channel.type !== ChannelType.GuildText && - channel.type !== ChannelType.GuildVoice && - channel.type !== ChannelType.PublicThread && - channel.type !== ChannelType.PrivateThread && - channel.type !== ChannelType.GuildAnnouncement && - channel.type !== ChannelType.GuildForum + channel.type !== ChannelType.GuildText + && channel.type !== ChannelType.GuildVoice + && channel.type !== ChannelType.PublicThread + && channel.type !== ChannelType.PrivateThread + && channel.type !== ChannelType.GuildAnnouncement + && channel.type !== ChannelType.GuildForum ) { await interaction.editReply({ content: 'This command can only be used in a server!' }); return false;