From 58fc3b393bfe5ee5050ecba8fbbfee01954e58a8 Mon Sep 17 00:00:00 2001 From: shni Date: Sun, 5 Oct 2025 16:13:17 -0500 Subject: [PATCH] Fix player command to use new components structure for message sending --- src/commands/messages/game/player.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/messages/game/player.ts b/src/commands/messages/game/player.ts index 5cfd538..08c37c6 100644 --- a/src/commands/messages/game/player.ts +++ b/src/commands/messages/game/player.ts @@ -169,7 +169,8 @@ export const command: CommandMessage = { const channel = message.channel as TextBasedChannel & { send: Function }; await (channel.send as any)({ - display, + content: null, + components: [display], flags: 32768, // MessageFlags.IS_COMPONENTS_V2 reply: { messageReference: message.id } });