aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentCircuitData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/AgentCircuitData.cs')
-rw-r--r--OpenSim/Framework/AgentCircuitData.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs
index 9d40af9..1c37601 100644
--- a/OpenSim/Framework/AgentCircuitData.cs
+++ b/OpenSim/Framework/AgentCircuitData.cs
@@ -28,10 +28,7 @@
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using OpenMetaverse; 30using OpenMetaverse;
31using OSD = OpenMetaverse.StructuredData.OSD; 31using OpenMetaverse.StructuredData;
32using OSDMap = OpenMetaverse.StructuredData.OSDMap;
33using OSDArray = OpenMetaverse.StructuredData.OSDArray;
34using OSDParser = OpenMetaverse.StructuredData.OSDParser;
35 32
36namespace OpenSim.Framework 33namespace OpenSim.Framework
37{ 34{
@@ -108,13 +105,13 @@ namespace OpenSim.Framework
108 if (args["caps_path"] != null) 105 if (args["caps_path"] != null)
109 CapsPath = args["caps_path"].AsString(); 106 CapsPath = args["caps_path"].AsString();
110 107
111 if ((args["children_seeds"] != null) && (args["children_seeds"].Type == OpenMetaverse.StructuredData.OSDType.Array)) 108 if ((args["children_seeds"] != null) && (args["children_seeds"].Type == OSDType.Array))
112 { 109 {
113 OSDArray childrenSeeds = (OSDArray)(args["children_seeds"]); 110 OSDArray childrenSeeds = (OSDArray)(args["children_seeds"]);
114 ChildrenCapSeeds = new Dictionary<ulong, string>(); 111 ChildrenCapSeeds = new Dictionary<ulong, string>();
115 foreach (OSD o in childrenSeeds) 112 foreach (OSD o in childrenSeeds)
116 { 113 {
117 if (o.Type == OpenMetaverse.StructuredData.OSDType.Map) 114 if (o.Type == OSDType.Map)
118 { 115 {
119 ulong handle = 0; 116 ulong handle = 0;
120 string seed = ""; 117 string seed = "";