diff options
author | Melanie | 2010-09-21 02:08:55 +0200 |
---|---|---|
committer | Melanie | 2010-09-21 04:02:28 +0100 |
commit | 10a37f5be4dd61607e6cc3f47cc356dd26cf504d (patch) | |
tree | 529ecd9c7c2d75532b043e3dd7db881d44b22902 /OpenSim/Region/Framework | |
parent | Add LandServices to make landmarks work right in grids (diff) | |
download | opensim-SC_OLD-10a37f5be4dd61607e6cc3f47cc356dd26cf504d.zip opensim-SC_OLD-10a37f5be4dd61607e6cc3f47cc356dd26cf504d.tar.gz opensim-SC_OLD-10a37f5be4dd61607e6cc3f47cc356dd26cf504d.tar.bz2 opensim-SC_OLD-10a37f5be4dd61607e6cc3f47cc356dd26cf504d.tar.xz |
Refactor script create permission into the perms module
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 8011154..d3a1447 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1533,16 +1533,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1533 | if (part == null) | 1533 | if (part == null) |
1534 | return; | 1534 | return; |
1535 | 1535 | ||
1536 | if (part.OwnerID != remoteClient.AgentId) | ||
1537 | { | ||
1538 | // Group permissions | ||
1539 | if ((part.GroupID == UUID.Zero) || (remoteClient.GetGroupPowers(part.GroupID) == 0) || ((part.GroupMask & (uint)PermissionMask.Modify) == 0)) | ||
1540 | return; | ||
1541 | } else { | ||
1542 | if ((part.OwnerMask & (uint)PermissionMask.Modify) == 0) | ||
1543 | return; | ||
1544 | } | ||
1545 | |||
1546 | if (!Permissions.CanCreateObjectInventory( | 1536 | if (!Permissions.CanCreateObjectInventory( |
1547 | itemBase.InvType, part.UUID, remoteClient.AgentId)) | 1537 | itemBase.InvType, part.UUID, remoteClient.AgentId)) |
1548 | return; | 1538 | return; |