aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index cf17686..2a25316 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1350,10 +1350,13 @@ namespace OpenSim.Region.Environment.Scenes
1350 agent.CapsPath, agent.AgentID, m_dumpAssetsToFile); 1350 agent.CapsPath, agent.AgentID, m_dumpAssetsToFile);
1351 1351
1352 Util.SetCapsURL(agent.AgentID, "http://" + m_regInfo.ExternalHostName + ":" + httpListener.Port.ToString() + 1352 Util.SetCapsURL(agent.AgentID, "http://" + m_regInfo.ExternalHostName + ":" + httpListener.Port.ToString() +
1353 "/CAPS/" + agent.CapsPath + "0000/"); 1353 "/CAPS/" + agent.CapsPath + "0000/");
1354 cap.RegisterHandlers(); 1354 cap.RegisterHandlers();
1355
1355 cap.AddNewInventoryItem = AddInventoryItem; 1356 cap.AddNewInventoryItem = AddInventoryItem;
1356 cap.ItemUpdatedCall = CapsUpdateInventoryItemAsset; 1357 cap.ItemUpdatedCall = CapsUpdateInventoryItemAsset;
1358 cap.TaskScriptUpdatedCall = CapsUpdateTaskInventoryScriptAsset;
1359
1357 if (m_capsHandlers.ContainsKey(agent.AgentID)) 1360 if (m_capsHandlers.ContainsKey(agent.AgentID))
1358 { 1361 {
1359 //MainLog.Instance.Warn("client", "Adding duplicate CAPS entry for user " + 1362 //MainLog.Instance.Warn("client", "Adding duplicate CAPS entry for user " +