diff options
author | diva | 2009-03-12 01:43:22 +0000 |
---|---|---|
committer | diva | 2009-03-12 01:43:22 +0000 |
commit | 4eba67175db73bce439ea3f18242c4038d9acb92 (patch) | |
tree | 80e2a1592c549535a3d3d63982495ceab983b92a /OpenSim/Framework | |
parent | Update svn properties, minor formatting cleanup. (diff) | |
download | opensim-SC_OLD-4eba67175db73bce439ea3f18242c4038d9acb92.zip opensim-SC_OLD-4eba67175db73bce439ea3f18242c4038d9acb92.tar.gz opensim-SC_OLD-4eba67175db73bce439ea3f18242c4038d9acb92.tar.bz2 opensim-SC_OLD-4eba67175db73bce439ea3f18242c4038d9acb92.tar.xz |
Minor bug fix. Thanks daTwitch.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/AgentCircuitData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs index bcd4c09..c0c910a 100644 --- a/OpenSim/Framework/AgentCircuitData.cs +++ b/OpenSim/Framework/AgentCircuitData.cs | |||
@@ -83,7 +83,8 @@ namespace OpenSim.Framework | |||
83 | pair["seed"] = OSD.FromString(kvp.Value); | 83 | pair["seed"] = OSD.FromString(kvp.Value); |
84 | childrenSeeds.Add(pair); | 84 | childrenSeeds.Add(pair); |
85 | } | 85 | } |
86 | args["children_seeds"] = childrenSeeds; | 86 | if (ChildrenCapSeeds.Count > 0) |
87 | args["children_seeds"] = childrenSeeds; | ||
87 | 88 | ||
88 | args["child"] = OSD.FromBoolean(child); | 89 | args["child"] = OSD.FromBoolean(child); |
89 | args["circuit_code"] = OSD.FromString(circuitcode.ToString()); | 90 | args["circuit_code"] = OSD.FromString(circuitcode.ToString()); |