diff options
author | Don Kjer <don@lindenlab.com> | 2012-07-09 00:48:02 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2012-07-09 00:48:02 +0000 |
commit | bc2517215cbf79cdf8a910e93cc5d3f2ac1534c7 (patch) | |
tree | 7239571bd4ebdac48c33f0971a8cc77665037949 | |
parent | b7bcad3164c6d94bb4f9a626982145eefa40e346 (diff) |
Skipping shiftObject pipeline method in headless mode
-rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index beb68c1cbb..e4ce670a43 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -1491,6 +1491,7 @@ void LLViewerObjectList::onPhysicsFlagsFetchFailure(const LLUUID& object_id) void LLViewerObjectList::shiftObjects(const LLVector3 &offset) { + if (gHeadlessClient) return; // This is called when we shift our origin when we cross region boundaries... // We need to update many object caches, I'll document this more as I dig through the code // cleaning things out... |