Skip to content

Commit

Permalink
fix: fix items endpoint texture (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiiyu authored Oct 29, 2024
1 parent e721a29 commit 7a5b54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svc/items.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function updateItemList() {
obj.damage = durability;
}
if (skin) {
obj.texture = getSkinHash(skin);
obj.texture = getSkinHash(skin.value);
}
itemsObject[id] = obj;
});
Expand Down

0 comments on commit 7a5b54a

Please sign in to comment.