initialize SimwideArea

httptests
UbitUmarov 2017-01-21 02:29:08 +00:00
parent d62854cbd3
commit 85a31c9e76
1 changed files with 3 additions and 1 deletions

View File

@ -1043,7 +1043,9 @@ namespace OpenSim.Region.CoreModules.World.Land
else
LandData.AABBMax = new Vector3(tx, ty, (float)m_scene.Heightmap[tx - 1, ty - 1]);
LandData.Area = tempArea * landUnit * landUnit;
tempArea *= landUnit * landUnit;
LandData.Area = tempArea;
LandData.SimwideArea = tempArea;
}
#endregion