mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
fix(cShop): price display for animal pieces
This commit is contained in:
parent
a7e1091f3f
commit
858caa4582
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue