patch objects crossings for var regions, until region location is fully fixed

avinationmerge
UbitUmarov 2015-09-25 18:38:52 +01:00
parent e6f675b81b
commit 40ae9ec554
1 changed files with 7 additions and 1 deletions

View File

@ -2547,8 +2547,14 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
else
y--;
// ugly
// Call the grid service to lookup the region containing the new position.
GridRegion neighbourRegion = GetRegionContainingWorldLocation(
scene.GridService, scene.RegionInfo.ScopeID,
targetPosition.X, targetPosition.Y,
Math.Max(scene.RegionInfo.RegionSizeX, scene.RegionInfo.RegionSizeY));
GridRegion neighbourRegion = scene.GridService.GetRegionByPosition(scene.RegionInfo.ScopeID,x,y);
// GridRegion neighbourRegion = scene.GridService.GetRegionByPosition(scene.RegionInfo.ScopeID,x,y);
if (neighbourRegion == null)
{
return null;