From 57e9c7a289a77227745a35321ad5cbcea81e5675 Mon Sep 17 00:00:00 2001 From: Index Date: Mon, 22 Jul 2024 11:18:08 -0500 Subject: [PATCH] fix: avatar sandbox retro item tools --- js/account/avatar-sandbox.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/account/avatar-sandbox.js b/js/account/avatar-sandbox.js index 19a6d50..4998168 100644 --- a/js/account/avatar-sandbox.js +++ b/js/account/avatar-sandbox.js @@ -562,7 +562,9 @@ async function LoadItems() { id: 1, name: "Polytoria" } - item.asset = 'https://poly-upd-archival.pages.dev/glb/' + item.id + '.glb' + if (item.asset === undefined) { + item.asset = 'https://poly-upd-archival.pages.dev/glb/' + item.id + '.glb' + } item.id = item.id*-1 item.ribbon = 'retro' ItemCache[item.id] = item