mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Fixes a permissions bug where a user with group powers to always rez was not being given permission to rez on group land.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user