* Fix for if 782: Locked prims may still be moved by click+drag.

* Remember, your admin user and estate managers can move locked objects that are not owned by them.  That functionality differs from the Linden way of thinking and it's by design! It is not a bug!  Create a non-god user and use that as your normal account.
This commit is contained in:
Teravus Ovares
2008-03-19 18:32:25 +00:00
parent f747687c8f
commit 8d5bcc9da1
2 changed files with 35 additions and 1 deletions

View File

@@ -998,7 +998,7 @@ namespace OpenSim.Region.Environment.Scenes
SceneObjectGroup group = GetGroupByPrim(objectID);
if (group != null)
{
if (PermissionsMngr.CanEditObjectPosition(remoteClient.AgentId, group.UUID))
if (PermissionsMngr.CanEditObjectPosition(remoteClient.AgentId, group.UUID))// && PermissionsMngr.)
{
group.GrabMovement(offset, pos, remoteClient);
}