Fixes a permissions bug where a user with group powers to always rez was not being given permission to rez on group land.
parent
14a31c3e9b
commit
3aa99b9a7f
|
@ -469,7 +469,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Parse a user set configuration setting
|
||||
/// </summary>
|
||||
|
@ -1473,6 +1473,10 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
|||
{
|
||||
return true;
|
||||
}
|
||||
else if (parcel.LandData.GroupID != UUID.Zero && IsGroupMember(parcel.LandData.GroupID, owner, (ulong)GroupPowers.AllowRez))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue