change odd condition on groupsV2 add to role

LSLKeyTest
UbitUmarov 2016-08-23 23:48:07 +01:00
parent ed6d9199ce
commit 7a2256a8cd
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ namespace OpenSim.Groups
// check permissions
bool limited = HasPower(RequestingAgentID, GroupID, GroupPowers.AssignMemberLimited);
bool unlimited = HasPower(RequestingAgentID, GroupID, GroupPowers.AssignMember) | IsOwner(RequestingAgentID, GroupID);
if (!limited || !unlimited)
if (!limited && !unlimited)
{
m_log.DebugFormat("[Groups]: ({0}) Attempt at assigning {1} to role {2} denied because of lack of permission", RequestingAgentID, AgentID, RoleID);
return false;