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); });