aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs2
-rw-r--r--OpenSim/Services/Interfaces/ISimulationService.cs2
2 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
index ebffa28..3bf03cf 100644
--- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
@@ -346,6 +346,8 @@ namespace OpenSim.Services.Connectors.Simulation
346 ctx.OutboundVersion = float.Parse(parts[1]); 346 ctx.OutboundVersion = float.Parse(parts[1]);
347 } 347 }
348 } 348 }
349 if (data.ContainsKey("variable_wearables_count_supported"))
350 ctx.VariableWearablesSupported = true;
349 351
350 m_log.DebugFormat( 352 m_log.DebugFormat(
351 "[REMOTE SIMULATION CONNECTOR]: QueryAccess to {0} returned {1}, reason {2}, version {3}/{4}", 353 "[REMOTE SIMULATION CONNECTOR]: QueryAccess to {0} returned {1}, reason {2}, version {3}/{4}",
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs
index 257b578..3f6b009 100644
--- a/OpenSim/Services/Interfaces/ISimulationService.cs
+++ b/OpenSim/Services/Interfaces/ISimulationService.cs
@@ -40,10 +40,12 @@ namespace OpenSim.Services.Interfaces
40 { 40 {
41 InboundVersion = VersionInfo.SimulationServiceVersionAcceptedMax; 41 InboundVersion = VersionInfo.SimulationServiceVersionAcceptedMax;
42 OutboundVersion = VersionInfo.SimulationServiceVersionSupportedMax; 42 OutboundVersion = VersionInfo.SimulationServiceVersionSupportedMax;
43 VariableWearablesSupported = false;
43 } 44 }
44 45
45 public float InboundVersion { get; set; } 46 public float InboundVersion { get; set; }
46 public float OutboundVersion { get; set; } 47 public float OutboundVersion { get; set; }
48 public bool VariableWearablesSupported { get; set; }
47 } 49 }
48 50
49 public interface ISimulationService 51 public interface ISimulationService