From 66c46ef6df85af545bcacf0615538a2f71361de8 Mon Sep 17 00:00:00 2001 From: shni Date: Thu, 2 Oct 2025 22:18:02 -0500 Subject: [PATCH] feat: update message reply flags for admin panel components in stats.ts --- src/commands/messages/AI/stats.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/messages/AI/stats.ts b/src/commands/messages/AI/stats.ts index 24dc641..de49f25 100644 --- a/src/commands/messages/AI/stats.ts +++ b/src/commands/messages/AI/stats.ts @@ -181,7 +181,7 @@ export const command: CommandMessage = { }; await message.reply({ - content: '', + flags: 32768, components: [resetPanel] }); logger.info(`Sistema de IA reiniciado por ${message.author.username} (${message.author.id})`); @@ -192,7 +192,7 @@ export const command: CommandMessage = { const adminPanel = buildAIAdminPanel(); await message.reply({ - content: '', + flags: 32768, components: [adminPanel] }); @@ -221,7 +221,7 @@ export const command: CommandMessage = { }; await message.reply({ - content: '', + flags: 32768, components: [errorPanel] }); }