1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Message.ts b/src/util/Message.ts
index 27796997..9b928031 100644
--- a/src/util/Message.ts
+++ b/src/util/Message.ts
@@ -50,7 +50,7 @@ export async function handleMessage(opts: Partial<Message>) {
mention_channels_ids: [],
mention_role_ids: [],
mention_user_ids: [],
- attachments: [], // TODO: message attachments
+ attachments: opts.attachments || [], // TODO: message attachments
embeds: opts.embeds || [],
reactions: opts.reactions || [],
type: opts.type ?? 0
|