httptests
UbitUmarov 2017-04-03 18:09:48 +01:00
parent 1264069b41
commit 4bb27917f4
1 changed files with 4 additions and 4 deletions

View File

@ -2985,12 +2985,12 @@ namespace OpenSim.Region.Framework.Scenes
// Return 'true' if position inside region.
public bool PositionIsInCurrentRegion(Vector3 pos)
{
int xx = (int)pos.X;
if (xx < 0 || xx >= RegionInfo.RegionSizeX)
float t = pos.X;
if (t < 0 || t >= RegionInfo.RegionSizeX)
return false;
int yy = (int)pos.Y;
if (yy < 0 || yy >= RegionInfo.RegionSizeY)
t = pos.Y;
if (t < 0 || t >= RegionInfo.RegionSizeY)
return false;
return true;