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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="https://vexuas.b-cdn.net/mitsuha.jpg" style="width: 180px" />
<img src="https://cdn.vexuas.com/Avatars/mitsuha.jpg" style="width: 180px" />
</div>

# djs-typescript-template
Expand Down Expand Up @@ -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: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/commands/about/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const serverNotificationEmbed = async ({
guild: Guild;
type: 'join' | 'leave';
}): Promise<APIEmbed> => {
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'
Expand Down