diff options
| author | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2021-12-03 23:55:20 -0500 | 
|---|---|---|
| committer | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2021-12-03 23:55:20 -0500 | 
| commit | 35a49f1c8e01dfd064bc0c4ad7681c24029ef5f7 (patch) | |
| tree | 2a21767a0f3419f37e297bc728f14cb8940d59dd /src | |
| parent | ability to specify custom avatar provider (diff) | |
| download | shulker-35a49f1c8e01dfd064bc0c4ad7681c24029ef5f7.tar.gz shulker-35a49f1c8e01dfd064bc0c4ad7681c24029ef5f7.zip | |
switched to mc-heads.net avatar api
Diffstat (limited to '')
| -rw-r--r-- | src/Discord.ts | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Discord.ts b/src/Discord.ts index b001c8c..a938f09 100644 --- a/src/Discord.ts +++ b/src/Discord.ts @@ -220,7 +220,7 @@ class Discord { } private getHeadUrl(uuid: string): string { - const url = this.config.HEAD_IMAGE_URL || 'https://minotar.net/helm/%uuid%/256.png' + const url = this.config.HEAD_IMAGE_URL || 'https://mc-heads.net/avatar/%uuid%/256' return url.replace(/%uuid%/, uuid) } |