Fix Control FSRenderFriendsOnly not found log warning

This commit is contained in:
Hecklezz
2026-05-05 03:04:12 +10:00
parent 810a9b6bb1
commit f93d6ad998
+1 -1
View File
@@ -5232,7 +5232,7 @@ void process_avatar_animation(LLMessageSystem *mesgsys, void **user_data)
if (!avatarp)
{
// no agent by this ID...error?
if (!gSavedSettings.getBOOL("FSRenderFriendsOnly")) // <FS:Ansariel> FIRE-32520: Prevent log spam when show friends only is enabled
if (!gSavedPerAccountSettings.getBOOL("FSRenderFriendsOnly")) // <FS:Ansariel> FIRE-32520: Prevent log spam when show friends only is enabled
LL_WARNS("Messaging") << "Received animation state for unknown avatar " << uuid << LL_ENDL;
return;
}