Update names and remove avatarUrl as it's useless

This commit is contained in:
Skylar Grant 2024-09-22 13:51:49 -04:00
parent 903bb9b4c0
commit a1f91900cd
2 changed files with 3 additions and 8 deletions

View File

@ -38,7 +38,6 @@ module.exports = {
webhookClient.send({ webhookClient.send({
content: 'This is a test of the WebhookClient', content: 'This is a test of the WebhookClient',
username: config.discord.testing.username, username: config.discord.testing.username,
avatarURL: config.discord.testing.avatarURL,
embeds: [embed] embeds: [embed]
}); });
}, },
@ -57,7 +56,6 @@ module.exports = {
webhookClient.send({ webhookClient.send({
content: 'A user has voted for the bot on top.gg', content: 'A user has voted for the bot on top.gg',
username: config.discord.topgg.username, username: config.discord.topgg.username,
avatarURL: config.discord.topgg.avatarURL,
embeds: [embed] embeds: [embed]
}); });
} }

View File

@ -1,16 +1,13 @@
{ {
"discord": { "discord": {
"testing": { "testing": {
"username": "testing", "username": "HookShot Test System"
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
}, },
"topgg": { "topgg": {
"username": "topgg", "username": "Silvanus votes on Top.gg"
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
}, },
"uptimeKuma": { "uptimeKuma": {
"username": "uptimeKuma", "username": "Silvanus Uptime Monitor"
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
} }
} }
} }