mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Differentiate between requests only the owner should be able to do and those
that managers can do when setting parcel data
This commit is contained in:
@@ -105,9 +105,9 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||
return m_rootScene.Permissions.CanEditObject(objectid, editorid);
|
||||
}
|
||||
|
||||
public bool CanEditParcelProperties(UUID user, ILandObject parcel, GroupPowers g, Scene scene)
|
||||
public bool CanEditParcelProperties(UUID user, ILandObject parcel, GroupPowers g, Scene scene, bool allowManager)
|
||||
{
|
||||
return m_rootScene.Permissions.CanEditParcelProperties(user, parcel, g);
|
||||
return m_rootScene.Permissions.CanEditParcelProperties(user, parcel, g, allowManager);
|
||||
}
|
||||
|
||||
public bool CanInstantMessage(UUID user, UUID target, Scene startscene)
|
||||
|
||||
Reference in New Issue
Block a user