Fixed edge case where rigs with no soft inserts or plates is listed on flea, resulting on a sell chance of NaN

This commit is contained in:
Dev 2024-07-01 16:37:14 +01:00
parent 014c67b0f2
commit c8f08ff2bc

View File

@ -527,6 +527,12 @@ export class ItemHelper
itemsWithQualityCount++;
}
if (itemsWithQualityCount === 0)
{
// Can happen when rigs without soft inserts or plates are listed
return 1;
}
return Math.min(qualityModifier / itemsWithQualityCount, 1);
}