From 8813407e84f84a4a11f0b285371697fb33a469db Mon Sep 17 00:00:00 2001 From: PanteraPolnocy Date: Fri, 21 Nov 2025 15:00:28 +0100 Subject: [PATCH] Raise maxSuggestedOutfits from 200 to 1000 As larger amount of them can be handled without freezing, after recent commits Signed-off-by: PanteraPolnocy --- indra/newview/lloutfitslist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index 2d0780d2b9..7bcbcabdee 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -1129,7 +1129,7 @@ void LLOutfitListBase::refreshList(const LLUUID& category_id) // FIRE-6958/VWR-2862; Handle large amounts of outfits, write a least a warning into the logs. S32 currentOutfitsAmount = (S32)mRefreshListState.Added.size(); - constexpr S32 maxSuggestedOutfits = 200; + constexpr S32 maxSuggestedOutfits = 1000; if (currentOutfitsAmount > maxSuggestedOutfits) { LL_WARNS() << "Large amount of outfits found: " << currentOutfitsAmount << " this may cause hangs and disconnects" << LL_ENDL;