Skip to content

Commit

Permalink
fix: v ig on thread
Browse files Browse the repository at this point in the history
  • Loading branch information
SrIzan10 committed Jul 28, 2024
1 parent fa23042 commit 8aeebb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events/chatgptThread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default discordEvent({
const thread = message.channel as ThreadChannel
if (thread.parentId !== process.env.CHATGPT_CHANNEL) return;
if (message.author.bot) return;
if (message.content.includes('ig')) return;
if (message.content.includes('v!ig')) return;

try {
await thread.sendTyping()
Expand Down

0 comments on commit 8aeebb1

Please sign in to comment.