diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-18 21:09:00 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-18 21:09:00 +0800 |
commit | 61f813aa1ab67ffcf0be66e6690c04a1c501c21e (patch) | |
tree | ec7da085e65c31d52749adb87582740f2bed5157 /features/dungeonMap | |
parent | ec8b3332001fda2763e0627e031758c68340024f (diff) | |
download | SoopyV2-61f813aa1ab67ffcf0be66e6690c04a1c501c21e.tar.gz SoopyV2-61f813aa1ab67ffcf0be66e6690c04a1c501c21e.tar.bz2 SoopyV2-61f813aa1ab67ffcf0be66e6690c04a1c501c21e.zip |
- fix dungeon map heads not loading
- potential fix features breaking when first loading in
Diffstat (limited to 'features/dungeonMap')
-rw-r--r-- | features/dungeonMap/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js index 96683ea..0098cd1 100644 --- a/features/dungeonMap/index.js +++ b/features/dungeonMap/index.js @@ -660,7 +660,7 @@ class DungeonMap extends Feature { this.playerImages[uuid]= "Loading" new Thread(()=>{ - this.playerImages[uuid] = new Image("skull-" + uuid,"https://cravatar.eu/helmavatar/" + uuid) + this.playerImages[uuid] = new Image("skull-" + uuid+"-v2","https://crafatar.com/avatars/" + uuid+"?size=8") }).start() return this.defaultPlayerImage } |