From 9f4a0b5775bb43fb107a4f6c38f75a478c5053a8 Mon Sep 17 00:00:00 2001 From: JeanCoding16 Date: Sat, 20 Jun 2026 17:34:25 +0200 Subject: [PATCH] fix message-quotes issues --- modules/message-quotes/configs/config.json | 26 ++++++++++++---------- modules/message-quotes/module.json | 1 + 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/modules/message-quotes/configs/config.json b/modules/message-quotes/configs/config.json index 03fa6b0b..e43c90ce 100644 --- a/modules/message-quotes/configs/config.json +++ b/modules/message-quotes/configs/config.json @@ -74,43 +74,45 @@ "allowGeneratedImage": true, "params": [ { - "name": "%userID%", + "name": "userID", "description": "Id of the user" }, { - "name": "%userName%", + "name": "userName", "description": "Username of the user" }, { - "name": "%displayName%", + "name": "displayName", "description": "Displays the user's nickname" }, { - "name": "%userAvatar%", - "description": "Avatar of the user" + "name": "userAvatar", + "description": "Avatar of the user", + "isImage": true }, { - "name": "%channelID%", + "name": "channelID", "description": "Id of the channel from which the quote originates" }, { - "name": "%channelName%", + "name": "channelName", "description": "Name of the channel from which the quote originates" }, { - "name": "%timestamp%", + "name": "timestamp", "description": "Shows when the original message was sent (Used discord timestamp)" }, { - "name": "%link%", + "name": "link", "description": "Message-link of the original message" }, { - "name": "%image%", - "description": "First image of the message, if available" + "name": "image", + "description": "First image of the message, if available", + "isImage": true }, { - "name": "%content%", + "name": "content", "description": "Message content of the quote" } ] diff --git a/modules/message-quotes/module.json b/modules/message-quotes/module.json index fa7e953e..6381055e 100644 --- a/modules/message-quotes/module.json +++ b/modules/message-quotes/module.json @@ -4,6 +4,7 @@ "description": "Quotes a Discord message when a user pastes a message link.", "fa-icon": "fas fa-quote-left", "author": { + "scnxOrgID": "98", "name": "Jean S.", "link": "https://github.com/JeanCoding16" },