httptests
UbitUmarov 2017-04-03 17:29:02 +01:00
parent 2bb5e98574
commit 1264069b41
1 changed files with 2 additions and 1 deletions

View File

@ -2990,8 +2990,9 @@ namespace OpenSim.Region.Framework.Scenes
return false;
int yy = (int)pos.Y;
if (yy < 0 || yy >= RegionInfo.RegionSizeX)
if (yy < 0 || yy >= RegionInfo.RegionSizeY)
return false;
return true;
}