summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrew Meadows <andrew@lindenlab.com>2010-12-15 08:03:49 -0800
committerAndrew Meadows <andrew@lindenlab.com>2010-12-15 08:03:49 -0800
commitbcc8351eb1389e81cef53998da3de7f9e54957eb (patch)
treeb556137fa47888644aa2ec43c9cca8b98e6b5c6f /indra/newview
parent64512b681e2f5582378d9943642a82c83cae30ac (diff)
parentdd8e387d66bec042bde299b88bab81d465bf4df1 (diff)
merge
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerregion.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index c73b5fdd40..43b26fe830 100644
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1502,8 +1502,9 @@ const U32 ALLOW_RETURN_ENCROACHING_OBJECT = REGION_FLAGS_ALLOW_RETURN_ENCROACHIN
bool LLViewerRegion::objectIsReturnable(const LLVector3& pos, const LLBBox& bbox)
{
- return mParcelOverlay
- && ( mParcelOverlay->isOwned(pos)
+ return (mParcelOverlay != NULL)
+ && (mParcelOverlay->isOwnedSelf(pos)
+ || mParcelOverlay->isOwnedGroup(pos)
|| ((mRegionFlags & ALLOW_RETURN_ENCROACHING_OBJECT)
&& mParcelOverlay->encroachesOwned(bbox)) );
}