From 8aae246b48275a9327a71e4e3de04a347ea0b21a Mon Sep 17 00:00:00 2001 From: Sainan Date: Sun, 23 Jun 2024 14:58:35 +0200 Subject: [PATCH] fix: purchasing multiples of a bundle (#379) --- 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