WIP(customizations): load hair colors

This commit is contained in:
Sabe Jones
2024-02-20 17:56:56 -06:00
parent cbfeb18517
commit 09ff3ee865
4 changed files with 38 additions and 4 deletions

View File

@@ -379,6 +379,15 @@ export default function getItemInfo (user, type, item, officialPinnedItems, lang
};
break;
}
case 'hairColor': {
itemInfo = {
key: item.key,
class: `hair hair_bangs_${user.preferences.hair.bangs}_${item.key}`,
value: item.price,
currency: 'gems',
};
break;
}
}
if (itemInfo) {