From 0b5c3ec789b2b857e32ed53674f4d8cf82462cdd Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 23 Jun 2024 01:01:44 +0200 Subject: [PATCH] fix: purchasing multiples of a bundle --- src/services/purchaseService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/purchaseService.ts b/src/services/purchaseService.ts index 9fb4a675..6f55bad0 100644 --- a/src/services/purchaseService.ts +++ b/src/services/purchaseService.ts @@ -91,7 +91,7 @@ const handleStoreItemAcquisition = async ( await handleStoreItemAcquisition( component.typeName, accountId, - component.purchaseQuantity, + component.purchaseQuantity * quantity, component.durability ) ).InventoryChanges -- 2.47.2