From 7ccfbab84430b00eb232c217e5e327e85408e933 Mon Sep 17 00:00:00 2001 From: Shiiyu <40838999+Shiiyu@users.noreply.github.com> Date: Tue, 29 Oct 2024 18:55:32 -0400 Subject: [PATCH] fix: fix items endpoint --- svc/items.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc/items.js b/svc/items.js index 55b88865..1b36d658 100644 --- a/svc/items.js +++ b/svc/items.js @@ -45,7 +45,7 @@ async function updateItemList() { obj.damage = durability; } if (skin) { - obj.texture = getSkinHash(skin); + obj.texture = getSkinHash(skin.value); } itemsObject[id] = obj; });