From a7fad515cd7a64b1ee6fcd9ebd155bcdbf3b0bb7 Mon Sep 17 00:00:00 2001 From: Spirtix Date: Thu, 25 Jul 2024 22:32:45 +0200 Subject: [PATCH] purchase: adjust item quantity note --- src/Controllers/Common/ContentController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controllers/Common/ContentController.cs b/src/Controllers/Common/ContentController.cs index bd07290..a7bc3dd 100644 --- a/src/Controllers/Common/ContentController.cs +++ b/src/Controllers/Common/ContentController.cs @@ -2287,8 +2287,8 @@ public class ContentController : Controller { Quantity = 0 }, i.Value)); } - // NOTE: The quantity of purchased items is always 0 and the items are instead duplicated in both the request and the response. - // Call AddItemToInventoryAndGetResponse with Quantity == 1 we get response with quantity == 0. + // NOTE: The quantity of purchased items can always be 0 and the items are instead duplicated in both the request and the response. + // Item quantities are used for non-store related requests/responses. return new CommonInventoryResponse { Success = true,