Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions modules/message-quotes/configs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
Expand Down
1 change: 1 addition & 0 deletions modules/message-quotes/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
Loading