We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9e1d00 commit cb8417cCopy full SHA for cb8417c
1 file changed
src/v2/commands/repel/index.ts
@@ -104,6 +104,7 @@ const getTextChannels = (interaction: ChatInputCommandInteraction) => {
104
(ch): ch is TextChannel =>
105
!IGNORED_CHANNEL_CATEGORIES.includes(ch.parentId) &&
106
ch.type === ChannelType.GuildText &&
107
+ interaction.channelId !== ch.id &&
108
Boolean(ch.lastMessageId),
109
)
110
.values();
0 commit comments