0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Removed unnecessary scope

This commit is contained in:
Dev 2024-07-21 22:08:36 +01:00
parent 8e17673d0d
commit 201df756a9

View File

@ -372,9 +372,7 @@ export class RagfairOfferHelper
{
// Only count the root items stack count in total
const rootItem = itemAndChildren[0];
{
total += rootItem.upd?.StackObjectsCount ?? 1;
}
total += rootItem.upd?.StackObjectsCount ?? 1;
}
return total;