This is the replacement fix for large regions and string version.
parent
6d0b45cd4e
commit
2198330142
|
@ -260,6 +260,12 @@ namespace OpenSim.Server.Handlers.Simulation
|
||||||
EntityTransferContext ctx = new EntityTransferContext();
|
EntityTransferContext ctx = new EntityTransferContext();
|
||||||
ctx.InboundVersion = inboundVersion;
|
ctx.InboundVersion = inboundVersion;
|
||||||
ctx.OutboundVersion = outboundVersion;
|
ctx.OutboundVersion = outboundVersion;
|
||||||
|
if (minVersionProvided == 0f)
|
||||||
|
{
|
||||||
|
ctx.InboundVersion = version;
|
||||||
|
ctx.OutboundVersion = version;
|
||||||
|
}
|
||||||
|
|
||||||
bool result = m_SimulationService.QueryAccess(destination, agentID, agentHomeURI, viaTeleport, position, features, ctx, out reason);
|
bool result = m_SimulationService.QueryAccess(destination, agentID, agentHomeURI, viaTeleport, position, features, ctx, out reason);
|
||||||
|
|
||||||
resp["success"] = OSD.FromBoolean(result);
|
resp["success"] = OSD.FromBoolean(result);
|
||||||
|
|
Loading…
Reference in New Issue