mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 14:43:05 -04:00
display author in author field
This commit is contained in:
parent
fe40a3c449
commit
73e9d6a914
1 changed files with 8 additions and 1 deletions
|
@ -45,15 +45,22 @@ module.exports = {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let msg = '';
|
let msg = '';
|
||||||
|
let author = {};
|
||||||
if (context.message.messageReference) {
|
if (context.message.messageReference) {
|
||||||
msg = await context.message.channel.fetchMessage(context.message.messageReference.messageId)
|
msg = await context.message.channel.fetchMessage(context.message.messageReference.messageId)
|
||||||
args.input = msg.content
|
args.input = msg.content
|
||||||
msg = `${icon("robot")} <@${msg.author.id}> (${msg.author.id})\n${codeblock("ansi", [stringwrap(msg.content, 200)])}\n`
|
author = {
|
||||||
|
name: msg.author.username,
|
||||||
|
iconUrl: msg.author.avatarUrl + '?size=256',
|
||||||
|
url: "https://discord.com/users/" + msg.author.id
|
||||||
|
}
|
||||||
|
msg = `${codeblock("ansi", [stringwrap(msg.content, 200)])}\n`
|
||||||
}
|
}
|
||||||
|
|
||||||
let perspectiveApi = await perspective(context, [args.input])
|
let perspectiveApi = await perspective(context, [args.input])
|
||||||
|
|
||||||
return await editOrReply(context, createEmbed("default", context, {
|
return await editOrReply(context, createEmbed("default", context, {
|
||||||
|
author,
|
||||||
description: `${msg}${iconPill("agreements", "Scores")} ${codeblock("ansi", formatPerspectiveScores(perspectiveApi.response.body))}`,
|
description: `${msg}${iconPill("agreements", "Scores")} ${codeblock("ansi", formatPerspectiveScores(perspectiveApi.response.body))}`,
|
||||||
footer: {
|
footer: {
|
||||||
iconUrl: STATICS.perspectiveapi,
|
iconUrl: STATICS.perspectiveapi,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue