From 1d7bd2e6624313837afccbdad3e27fbf8662b233 Mon Sep 17 00:00:00 2001 From: Carl Vitullo Date: Fri, 10 Jan 2025 15:37:00 -0500 Subject: [PATCH] Update index.ts --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 3f12ee8f..0387f8e0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -226,6 +226,10 @@ bot.on("threadCreate", (thread) => { bot.on("messageCreate", async (msg) => { if (msg.author?.id === bot.user?.id) return; + if (msg.content.includes("🙂👍👍")) { + msg.channel.send("heya!"); + } + handleMessage(msg); });