diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-19 21:36:07 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-20 02:14:01 +0200 |
commit | df3f95e1813f3b65f5172444e35cb53df9ef3ad9 (patch) | |
tree | 80925e6b822e6c66726d6a6505b5bdd35d523f45 | |
parent | c3e6f7b1643076df35a6960f735024078ddbb353 (diff) |
Fixed inital return value accidentally got changed in commit 9e854b697a06abed2a0917fb6120445f176764f0
-rw-r--r-- | indra/llinventory/llpermissions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llinventory/llpermissions.cpp b/indra/llinventory/llpermissions.cpp index 693a0da123..b119a549f5 100644 --- a/indra/llinventory/llpermissions.cpp +++ b/indra/llinventory/llpermissions.cpp @@ -325,7 +325,7 @@ bool LLPermissions::deedToGroup(const LLUUID& agent, const LLUUID& group) bool LLPermissions::setBaseBits(const LLUUID& agent, bool set, PermissionMask bits) { - bool ownership = true; + bool ownership = false; if(agent.isNull()) { // only the system is always allowed to change base bits |