aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs12
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
index 7c22a7c..bedec80 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
@@ -131,8 +131,6 @@ namespace OpenSim.Region.ClientStack.Linden
131 m_features["MeshRezEnabled"] = true; 131 m_features["MeshRezEnabled"] = true;
132 m_features["MeshUploadEnabled"] = true; 132 m_features["MeshUploadEnabled"] = true;
133 m_features["MeshXferEnabled"] = true; 133 m_features["MeshXferEnabled"] = true;
134 m_features["AvatarSkeleton"] = true;
135 m_features["AnimationSet"] = true;
136 134
137 m_features["PhysicsMaterialsEnabled"] = true; 135 m_features["PhysicsMaterialsEnabled"] = true;
138 136
@@ -143,15 +141,19 @@ namespace OpenSim.Region.ClientStack.Linden
143 m_features["PhysicsShapeTypes"] = typesMap; 141 m_features["PhysicsShapeTypes"] = typesMap;
144 142
145 // Extra information for viewers that want to use it 143 // Extra information for viewers that want to use it
146 // TODO: Take these out of here into their respective modules, like map-server-url 144
147 OSDMap extrasMap = new OSDMap(); 145 OSDMap extrasMap = new OSDMap();
146
147 extrasMap["AvatarSkeleton"] = true;
148 extrasMap["AnimationSet"] = true;
149
150 // TODO: Take these out of here into their respective modules, like map-server-url
148 if (m_SearchURL != string.Empty) 151 if (m_SearchURL != string.Empty)
149 extrasMap["search-server-url"] = m_SearchURL; 152 extrasMap["search-server-url"] = m_SearchURL;
150 if (m_ExportSupported) 153 if (m_ExportSupported)
151 extrasMap["ExportSupported"] = true; 154 extrasMap["ExportSupported"] = true;
152 155
153 if (extrasMap.Count > 0) 156 m_features["OpenSimExtras"] = extrasMap;
154 m_features["OpenSimExtras"] = extrasMap;
155 157
156 } 158 }
157 } 159 }