Slightly reduce expired offer count threshold

This commit is contained in:
Dev 2024-02-11 19:51:49 +00:00
parent 872c6282ec
commit b2b45f2972
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
"handbookPriceMultipier": 1.1,
"priceThreshholdRub": 20000
},
"expiredOfferThreshold": 1500,
"expiredOfferThreshold": 1400,
"offerItemCount": {
"min": 7,
"max": 30

View File

@ -402,7 +402,7 @@ export class RagfairController
averageOfferPrice *= itemPriceModifer;
}
// Multipler single item price by stack count and quality
// Multiply single item price by stack count and quality
averageOfferPrice *= rootItem.upd.StackObjectsCount * qualityMultiplier;
const itemStackCount = (offerRequest.sellInOnePiece) ? 1 : rootItem.upd.StackObjectsCount;