mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 09:02:50 +00:00
Revert "downgrade protocol max to 0.3 since variable wearable types is still not supported"
This reverts commit 8c75625e85.
This commit is contained in:
@@ -83,8 +83,8 @@ namespace OpenSim
|
||||
/// - this is an older teleport protocol used in OpenSimulator 0.7.5 and before.
|
||||
/// </remarks>
|
||||
public readonly static float SimulationServiceVersionAcceptedMin = 0.3f;
|
||||
public readonly static float SimulationServiceVersionAcceptedMax = 0.3f;
|
||||
public readonly static float SimulationServiceVersionAcceptedMax = 0.4f;
|
||||
public readonly static float SimulationServiceVersionSupportedMin = 0.3f;
|
||||
public readonly static float SimulationServiceVersionSupportedMax = 0.3f;
|
||||
public readonly static float SimulationServiceVersionSupportedMax = 0.4f;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -262,7 +262,7 @@ namespace OpenSim.Server.Handlers.Simulation
|
||||
resp["version"] = OSD.FromString(legacyVersion);
|
||||
resp["negotiated_inbound_version"] = OSD.FromReal(inboundVersion);
|
||||
resp["negotiated_outbound_version"] = OSD.FromReal(outboundVersion);
|
||||
resp["variable_wearables_count_supported"] = OSD.FromBoolean(false);
|
||||
resp["variable_wearables_count_supported"] = OSD.FromBoolean(true);
|
||||
|
||||
OSDArray featuresWanted = new OSDArray();
|
||||
foreach (UUID feature in features)
|
||||
|
||||
@@ -345,9 +345,8 @@ namespace OpenSim.Services.Connectors.Simulation
|
||||
ctx.OutboundVersion = float.Parse(parts[1]);
|
||||
}
|
||||
}
|
||||
// if (data.ContainsKey("variable_wearables_count_supported"))
|
||||
// ctx.VariableWearablesSupported = true;
|
||||
ctx.VariableWearablesSupported = false;
|
||||
if (data.ContainsKey("variable_wearables_count_supported"))
|
||||
ctx.VariableWearablesSupported = true;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[REMOTE SIMULATION CONNECTOR]: QueryAccess to {0} returned {1}, reason {2}, version {3}/{4}",
|
||||
|
||||
Reference in New Issue
Block a user