This is the replacement fix for large regions and string version.

avinationmerge
Melanie Thielker 2015-11-01 00:40:13 +01:00
parent 6d0b45cd4e
commit 2198330142
1 changed files with 6 additions and 0 deletions

View File

@ -260,6 +260,12 @@ namespace OpenSim.Server.Handlers.Simulation
EntityTransferContext ctx = new EntityTransferContext();
ctx.InboundVersion = inboundVersion;
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);
resp["success"] = OSD.FromBoolean(result);