Updated all eventt file embed reply prefs
This commit is contained in:
@@ -116,7 +116,7 @@ async function guildWeekly() {
|
|||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
footer: {
|
footer: {
|
||||||
text: channel.guild.name + " | " + devMessage,
|
text: channel.guild.name + " | " + devMessage,
|
||||||
icon_url: channel.guild.iconURL({ forceStatic: false })!,
|
icon_url: channel.guild.iconURL({ forceStatic: false }) || undefined,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -22,8 +22,12 @@ export = {
|
|||||||
"Account created: " +
|
"Account created: " +
|
||||||
member.user.createdAt.toLocaleString(),
|
member.user.createdAt.toLocaleString(),
|
||||||
color: embedColor,
|
color: embedColor,
|
||||||
|
thumbnail: {
|
||||||
|
url: member.user.avatarURL({ forceStatic: false }) || "",
|
||||||
|
},
|
||||||
footer: {
|
footer: {
|
||||||
text: "ID: " + member.id,
|
text: "ID: " + member.id,
|
||||||
|
icon_url: member.user.avatarURL({ forceStatic: false }) || undefined,
|
||||||
},
|
},
|
||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ export = {
|
|||||||
color: embedColor,
|
color: embedColor,
|
||||||
footer: {
|
footer: {
|
||||||
text: "ID: " + newState.member!.id,
|
text: "ID: " + newState.member!.id,
|
||||||
|
icon_url: newState.member!.user.avatarURL({ forceStatic: false }) || undefined,
|
||||||
},
|
},
|
||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
},
|
},
|
||||||
@@ -49,6 +50,7 @@ export = {
|
|||||||
color: embedColor,
|
color: embedColor,
|
||||||
footer: {
|
footer: {
|
||||||
text: "ID: " + oldState.member!.id,
|
text: "ID: " + oldState.member!.id,
|
||||||
|
icon_url: oldState.member!.user.avatarURL({ forceStatic: false }) || undefined,
|
||||||
},
|
},
|
||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
},
|
},
|
||||||
@@ -70,6 +72,7 @@ export = {
|
|||||||
color: embedColor,
|
color: embedColor,
|
||||||
footer: {
|
footer: {
|
||||||
text: "ID: " + oldState.member!.id,
|
text: "ID: " + oldState.member!.id,
|
||||||
|
icon_url: oldState.member!.user.avatarURL({ forceStatic: false }) || undefined,
|
||||||
},
|
},
|
||||||
timestamp: new Date().toISOString(),
|
timestamp: new Date().toISOString(),
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user