diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2022-07-01 05:23:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 05:23:05 +0000 |
commit | dc95635f199e86072ad7fa7fc7a5d77457120715 (patch) | |
tree | f4ba38fbefdf43531006bdbee2aa50abec6c9a0a /src/lib/minecraft/inventory.ts | |
parent | 61c160b600026da4f9dcc43232281e397699f2f1 (diff) | |
parent | f740562c791048393913fdf75b677fc49760c07c (diff) | |
download | skyblock-stats-dc95635f199e86072ad7fa7fc7a5d77457120715.tar.gz skyblock-stats-dc95635f199e86072ad7fa7fc7a5d77457120715.tar.bz2 skyblock-stats-dc95635f199e86072ad7fa7fc7a5d77457120715.zip |
Merge pull request #4 from skyblockstats/faster-heads
Faster heads
Diffstat (limited to 'src/lib/minecraft/inventory.ts')
-rw-r--r-- | src/lib/minecraft/inventory.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/minecraft/inventory.ts b/src/lib/minecraft/inventory.ts index 227ed0c..9599c35 100644 --- a/src/lib/minecraft/inventory.ts +++ b/src/lib/minecraft/inventory.ts @@ -128,7 +128,7 @@ export function itemToUrl(item: Item, pack?: skyblockAssets.MatcherFile, headSiz noNullTexture: true }) if (textureUrl === null) { - textureUrl = `https://mc-heads.net/head/${item.headTexture}` + textureUrl = `https://h.matdoes.dev/3d/${item.headTexture}` if (headSize) textureUrl += `/${headSize}` } |