From ba19dd26914c5097a445c9acc1a9ef0538d27812 Mon Sep 17 00:00:00 2001 From: Index Date: Fri, 5 Jul 2024 04:56:21 -0500 Subject: [PATCH] fix: include face in wearing avatar sandbox --- js/account/avatar-sandbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/account/avatar-sandbox.js b/js/account/avatar-sandbox.js index 3a656af..7177fd0 100644 --- a/js/account/avatar-sandbox.js +++ b/js/account/avatar-sandbox.js @@ -535,7 +535,7 @@ async function LoadItems() { function LoadWearing() { document.getElementById('wearing').innerHTML = ''; - [...Avatar.items, Avatar.shirt, Avatar.pants, Avatar.tool, Avatar.torso].filter((x) => x !== undefined).forEach(id => { + [...Avatar.items, Avatar.face, Avatar.shirt, Avatar.pants, Avatar.tool, Avatar.torso].filter((x) => x !== undefined).forEach(id => { const Cached = Object.values(ItemCache)[Object.keys(ItemCache).indexOf(id.toString())] if (Cached !== undefined) { if (Cached.creator === undefined || Cached.creator === null) {