Merge branch 'develop' of https://github.com/sp-tarkov/server-csharp into develop

This commit is contained in:
Chomp
2025-07-12 10:58:43 +01:00
@@ -79,7 +79,10 @@ public class RagfairSortHelper(LocaleService localeService)
protected int SortOffersByRating(RagfairOffer a, RagfairOffer b)
{
return (int)(a.User.Rating.Value - b.User.Rating.Value);
double ratingA = a?.User?.Rating ?? 0.0;
double ratingB = b?.User?.Rating ?? 0.0;
return ratingA.CompareTo(ratingB);
}
protected int SortOffersByName(RagfairOffer a, RagfairOffer b)