summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2017-10-04 19:52:11 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2017-10-04 19:52:11 +0100
commit20b7f4684c8182a02422160ad3c5b6102dc8f997 (patch)
tree0caf5fafd188a69622e87e115140e80f687b3ed8 /indra/newview/llvoavatar.cpp
parent497a4109d809f7aa5818d5c5dfecb7ca8cf3b1f9 (diff)
MAINT-7867 - changed simulator feature query so we're only looking in the agent's region. This assumes that all regions will have the same settings, which is normally a safe assumption.
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rw-r--r--indra/newview/llvoavatar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index d2a413b073..516cf79fbe 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -6613,9 +6613,9 @@ S32 LLVOAvatar::getMaxAnimatedObjectAttachments() const
{
S32 max_attach = 0;
LLSD features;
- if (getRegion())
+ if (gAgent.getRegion())
{
- getRegion()->getSimulatorFeatures(features);
+ gAgent.getRegion()->getSimulatorFeatures(features);
if (features.has("AnimatedObjects"))
{
max_attach = features["AnimatedObjects"]["MaxAgentAnimatedObjectAttachments"].asInteger();