mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
market fixes 28th nov (#9593)
* list special gear by the `specialClass` - fixes #9485 * only disable the currencly label + value not the amount input - fixes #9492 * disable transformations on equipment previews - fixes #9497 * show boss strength - fixes #9522 * pin time travelers animals - closes #9382 * clean up + package-lock ? * fix quest info
This commit is contained in:
@@ -316,6 +316,22 @@ module.exports = function getItemInfo (user, type, item, officialPinnedItems, la
|
||||
};
|
||||
break;
|
||||
}
|
||||
case 'timeTravelersStable': {
|
||||
itemInfo = {
|
||||
key: item.key,
|
||||
purchaseType: item.type,
|
||||
class: `shop_${item.type}_${item.key}`,
|
||||
text: content.timeTravelStable[item.type][item.key](language),
|
||||
notes: '',
|
||||
value: 1,
|
||||
|
||||
locked: false,
|
||||
currency: 'hourglasses',
|
||||
path: `timeTravelStable.${item.type}.${item.key}`,
|
||||
pinType: 'timeTravelersStable',
|
||||
};
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (itemInfo) {
|
||||
|
||||
Reference in New Issue
Block a user