diff options
Diffstat (limited to 'src/hypixel.ts')
-rw-r--r-- | src/hypixel.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hypixel.ts b/src/hypixel.ts index a29a7b1..2e0c1bc 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -500,7 +500,7 @@ async function fetchAuctionItemsUncached() { // if the item in the database isn't in the items api, just set the name to the id for (const item of auctionItemIds) if (!idsToNames.has(item)) - idsToNames.set(item, item) + idsToNames.set(item, item.toLowerCase().replace(/^./, item[0].toUpperCase()).replace(/_/g, ' ')) return idsToNames } |