From 61f813aa1ab67ffcf0be66e6690c04a1c501c21e Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Fri, 18 Mar 2022 21:09:00 +0800 Subject: - fix dungeon map heads not loading - potential fix features breaking when first loading in --- features/dungeonMap/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features/dungeonMap') 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 } -- cgit