fix(cShop): price display for animal pieces

This commit is contained in:
Sabe Jones 2024-06-21 09:58:33 -05:00
parent a7e1091f3f
commit 858caa4582

View file

@ -232,7 +232,7 @@ export default function getItemInfo (user, type, item, officialPinnedItems, lang
case 'gear':
// spread operator not available
itemInfo = Object.assign(getDefaultGearProps(item, language), {
value: item.twoHanded ? 2 : 1,
value: item.twoHanded || item.gearSet === 'animal' ? 2 : 1,
currency: 'gems',
pinType: 'gear',
});