diff --git a/README.md b/README.md
index e9c3a85..fd96d16 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-

+
# djs-typescript-template
@@ -162,7 +162,7 @@ export function generateHelloEmbed(): APIEmbed {
color: 55296,
description: 'Hi there! (◕ᴗ◕✿)',
thumbnail: {
- url: 'https://vexuas.b-cdn.net/mitsuha.jpg',
+ url: 'https://cdn.vexuas.com/Avatars/mitsuha.jpg',
},
fields: [
{
diff --git a/src/commands/about/index.ts b/src/commands/about/index.ts
index f3e2cc1..325202f 100644
--- a/src/commands/about/index.ts
+++ b/src/commands/about/index.ts
@@ -11,7 +11,7 @@ export const generateAboutEmbed = (app?: Client): APIEmbed => {
"Hi there! This is where you'd want to explain what your App does and any other cool stuff about it! :D",
color: getEmbedColor(),
thumbnail: {
- url: 'https://vexuas.b-cdn.net/mitsuha.jpg',
+ url: 'https://cdn.vexuas.com/Avatars/mitsuha.jpg',
},
fields: [
{
diff --git a/src/utils/helpers.ts b/src/utils/helpers.ts
index 8aed7cb..9f9bac8 100644
--- a/src/utils/helpers.ts
+++ b/src/utils/helpers.ts
@@ -26,7 +26,7 @@ export const serverNotificationEmbed = async ({
guild: Guild;
type: 'join' | 'leave';
}): Promise => {
- const defaultIcon = 'https://vexuas.b-cdn.net/you_got_that.png';
+ const defaultIcon = 'https://cdn.vexuas.com/Avatars/you_got_that.png';
const guildIcon = guild.icon && guild.iconURL();
const guildOwner =
type === 'join'