diff --git a/src/services/purchaseService.ts b/src/services/purchaseService.ts index cf92b775..02a9276f 100644 --- a/src/services/purchaseService.ts +++ b/src/services/purchaseService.ts @@ -368,7 +368,9 @@ const handleBoosterPackPurchase = async ( InventoryChanges: {} }; if (quantity > 100) { - throw new Error("attempt to roll over 100 booster packs in a single go. possible but unlikely to be desirable for the user or the server."); + throw new Error( + "attempt to roll over 100 booster packs in a single go. possible but unlikely to be desirable for the user or the server." + ); } for (let i = 0; i != quantity; ++i) { for (const weights of pack.rarityWeightsPerRoll) {