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.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index 346f7dd..d747bd2 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -2647,6 +2647,23 @@ bool idle_startup()
2647 2647
2648 LLAppViewer::instance()->initMainloopTimeout("Mainloop Init"); 2648 LLAppViewer::instance()->initMainloopTimeout("Mainloop Init");
2649 2649
2650// [RLVa:KB] - Alternate: Snowglobe-1.0 | Checked: 2009-08-05 (RLVa-1.0.1e) | Modified: RLVa-1.0.1e
2651 // RELEASE-RLVa: this should go in LLAppViewer::handleLoginComplete() but Imprudence doesn't call that function
2652 gRlvHandler.initLookupTables();
2653
2654 if (rlv_handler_t::isEnabled())
2655 {
2656 RlvCurrentlyWorn::fetchWorn();
2657 rlv_handler_t::fetchSharedInventory();
2658
2659 #ifdef RLV_EXTENSION_STARTLOCATION
2660 RlvSettings::updateLoginLastLocation();
2661 #endif // RLV_EXTENSION_STARTLOCATION
2662
2663 gRlvHandler.processRetainedCommands();
2664 }
2665// [/RLVa:KB]
2666
2650 return TRUE; 2667 return TRUE;
2651 } 2668 }
2652 2669