diff --git a/src/commands/messages/game/_helpers.ts b/src/commands/messages/game/_helpers.ts index d0e2124..0b622d9 100644 --- a/src/commands/messages/game/_helpers.ts +++ b/src/commands/messages/game/_helpers.ts @@ -516,9 +516,8 @@ export async function promptKeySelection( export function sendDisplayReply(message: Message, display: any, extraComponents: any[] = []) { const channel = message.channel as TextBasedChannel & { send: Function }; return (channel.send as any)({ - content: null, flags: 32768, - reply: { messageReference: message.id }, + message_reference: { message_id: message.id }, components: [display, ...extraComponents], }); }