|
@@ -274,7 +274,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
if (group.UpdateInventoryItem(item))
|
|
|
remoteClient.SendAgentAlertMessage("Script saved", false);
|
|
|
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
|
|
|
// Trigger rerunning of script (use TriggerRezScript event, see RezScript)
|
|
|
ArrayList errors = new ArrayList();
|
|
@@ -999,7 +999,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
}
|
|
|
|
|
|
group.RemoveInventoryItem(localID, itemID);
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
}
|
|
|
|
|
|
private InventoryItemBase CreateAgentInventoryItemFromTask(UUID destAgent, SceneObjectPart part, UUID itemId)
|
|
@@ -1272,7 +1272,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
|
|
|
if (TryGetScenePresence(srcTaskItem.OwnerID, out avatar))
|
|
|
{
|
|
|
- destPart.GetProperties(avatar.ControllingClient);
|
|
|
+ destPart.SendPropertiesToClient(avatar.ControllingClient);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1427,7 +1427,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
m_log.InfoFormat(
|
|
|
"[PRIM INVENTORY]: Update with item {0} requested of prim {1} for {2}",
|
|
|
item.Name, primLocalID, remoteClient.Name);
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
if (!Permissions.BypassPermissions())
|
|
|
{
|
|
|
if ((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0)
|
|
@@ -1522,7 +1522,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
|
|
|
if (part.Inventory.UpdateInventoryItem(itemInfo))
|
|
|
{
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1574,7 +1574,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
// m_log.InfoFormat("[PRIMINVENTORY]: " +
|
|
|
// "Rezzed script {0} into prim local ID {1} for user {2}",
|
|
|
// item.inventoryName, localID, remoteClient.Name);
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
part.ParentGroup.ResumeScripts();
|
|
|
}
|
|
|
else
|
|
@@ -1632,7 +1632,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
taskItem.AssetID = asset.FullID;
|
|
|
|
|
|
part.Inventory.AddInventoryItem(taskItem, false);
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
|
|
|
part.Inventory.CreateScriptInstance(taskItem, 0, false, DefaultScriptEngine, 0);
|
|
|
part.ParentGroup.ResumeScripts();
|
|
@@ -1746,7 +1746,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
|
|
|
if (TryGetScenePresence(srcTaskItem.OwnerID, out avatar))
|
|
|
{
|
|
|
- destPart.GetProperties(avatar.ControllingClient);
|
|
|
+ destPart.SendPropertiesToClient(avatar.ControllingClient);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2084,7 +2084,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|
|
SceneObjectPart part = GetSceneObjectPart(localID);
|
|
|
if (part == null)
|
|
|
continue;
|
|
|
- part.GetProperties(remoteClient);
|
|
|
+ part.SendPropertiesToClient(remoteClient);
|
|
|
}
|
|
|
}
|
|
|
|