aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llstartup.cpp')
-rw-r--r--linden/indra/newview/llstartup.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index e997e5f..08d6d3f 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -2788,8 +2788,11 @@ bool idle_startup()
2788 // Have the agent start watching the friends list so we can update proxies 2788 // Have the agent start watching the friends list so we can update proxies
2789 gAgent.observeFriends(); 2789 gAgent.observeFriends();
2790 2790
2791 // Start loading inventory 2791 if (gSavedSettings.getBOOL("FetchInventoryOnLogin"))
2792 gInventory.startBackgroundFetch(); 2792 {
2793 // Start loading inventory
2794 gInventory.startBackgroundFetch();
2795 }
2793 2796
2794 if (gSavedSettings.getBOOL("LoginAsGod")) 2797 if (gSavedSettings.getBOOL("LoginAsGod"))
2795 { 2798 {