From cc0c44d4f0f465e82549b7c3a7335931fc4e9886 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 1 Mar 2026 20:52:19 +0100 Subject: [PATCH] tiny change --- src/bot.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/bot.js b/src/bot.js index 7a6ded9..86d8a4f 100644 --- a/src/bot.js +++ b/src/bot.js @@ -416,15 +416,6 @@ async function deliverReplies(message, chunks) { } } -async function maybeReactOnMemory(message, memoryCount) { - if (!memoryCount) return; - try { - await message.react('🧠'); - } catch (err) { - console.warn('[bot] memory reaction failed:', err?.message); - } -} - function buildBlackjackButtons(stage) { const finished = stage === 'stand' || stage === 'finished'; const row = new ActionRowBuilder().addComponents( @@ -715,7 +706,6 @@ client.on('messageCreate', async (message) => { await recordInteraction(userId, cleaned, outputs.join(' | ')); await deliverReplies(message, outputs); - await maybeReactOnMemory(message, debug?.context?.memories?.length); startContinuationForUser(userId, message.channel); } catch (error) { console.error('[bot] Failed to respond:', error);