Skip to content

Commit

Permalink
Update what emoji name
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Nov 9, 2024
1 parent 8a69c38 commit 23c3563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/autoreact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 23c3563

Please sign in to comment.