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 a2a8749..a29a7b1 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -416,7 +416,7 @@ export async function periodicallyFetchRecentlyEndedAuctions() { bin: auction.bin, } // make sure the auction isn't already in there - if (auctions.find((a) => a.id === simpleAuction.id)) { + if (!auctions.find((a) => a.id === simpleAuction.id)) { auctions.push(simpleAuction) // keep only the last 100 items if (auctions.length > 100) |