From 749b4593b93f7208b2f951b89bd62910e352a86b Mon Sep 17 00:00:00 2001 From: Cesium Date: Wed, 22 Oct 2025 01:47:43 -0400 Subject: [PATCH] also it needs yet another partial also .name is the actual emoji not the name --- index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 7b3dcc5..a30c040 100644 --- a/index.js +++ b/index.js @@ -13,7 +13,8 @@ const client = new Client({ partials: [ Partials.Channel, Partials.Message, - Partials.Reaction + Partials.Reaction, + Partials.User ] }); client.once(Events.ClientReady, readyClient => { @@ -42,7 +43,7 @@ client.on(Events.MessageCreate, message => { // funny auto mpreg react client.on(Events.MessageReactionAdd, (reaction, user) => { - if (reaction.emoji.name === 'pregnant_man' && !user.bot) { + if (reaction.emoji.name === '🫃' && !user.bot) { reaction.message.react('🫃') } })