Raise maxSuggestedOutfits from 200 to 1000

As larger amount of them can be handled without freezing, after recent commits

Signed-off-by: PanteraPolnocy <panterapolnocy@gmail.com>
master
PanteraPolnocy 2025-11-21 15:00:28 +01:00
parent 676760fd10
commit 8813407e84
1 changed files with 1 additions and 1 deletions

View File

@ -1129,7 +1129,7 @@ void LLOutfitListBase::refreshList(const LLUUID& category_id)
// <FS:ND> 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;