From 23c356316bcf4ad5c065c3e5830a6e361c1df3f1 Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Fri, 8 Nov 2024 18:49:09 -0600 Subject: [PATCH] Update what emoji name --- src/components/autoreact.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/autoreact.ts b/src/components/autoreact.ts index da1d8da..286b8f1 100644 --- a/src/components/autoreact.ts +++ b/src/components/autoreact.ts @@ -52,7 +52,7 @@ export default class Autoreact extends BotComponent { if (message.content.trim().match(/^wh?at(?:[!?]*\?[!?]*)?$/gi)) { // Put an unmanaged non null assertion here because of the precondition requiring that guildId must be // TCCPP (and thus always a valid guild) - const reaction = message.guild!.emojis.cache.find(emoji => emoji.name === "thcampbell"); + const reaction = message.guild!.emojis.cache.find(emoji => emoji.name === "what"); if (reaction !== undefined) { await message.react(reaction); }