diff options
author | James Cook <james@lindenlab.com> | 2007-09-28 21:16:27 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-09-28 21:16:27 +0000 |
commit | ab8dd2b55008090a1f18fb107f897c736d98a760 (patch) | |
tree | 21845de0fc919261db19d0dc831d39583de68ea7 | |
parent | 5fa53075951cc0e4ed3e33bc3bee20c888f821c7 (diff) |
SL-56402 God powers failing in release branch. Change to llselectmgr.cpp in maintenance rev 68427 broke this. Reverted that patch. Paired with Don.
-rw-r--r-- | indra/newview/llselectmgr.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index bfb46301c2..0fbcd93b0b 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -4175,14 +4175,7 @@ void LLSelectMgr::sendListToRegions(const LLString& message_name, while(node) { - // look and see if this object is actually modifiable by the current agent, because if it's not, then there's little - // point in pushing it up to the server to be updated, since we couldn't change it anywa. - // That just results in errors on screen when this function gets called by other things, like pulling down a drop down menu - LLViewerObject* object = node->getObject(); - if( object && (object->permModify() || gAgent.allowOperation(PERM_MODIFY, *node->mPermissions) || gAgent.allowOperation(PERM_MOVE, *node->mPermissions))) - { - nodes_to_send.push(node); - } + nodes_to_send.push(node); node = mSelectedObjects->getNextRootNode(); } } |