From 31b2b2bcc411c6bffb925eaff50731f9aefb5a82 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 17 May 2022 21:10:38 -0500 Subject: Sort auctions by most sold --- src/hypixel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hypixel.ts') 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 } -- cgit