varregion: remove uses of region size constant. In particular, update scene

to check for border crossings based on the size of the region.
This commit is contained in:
Robert Adams
2013-11-04 22:09:52 -08:00
parent ac94dc8a14
commit cd1a23fc14
3 changed files with 15 additions and 14 deletions

View File

@@ -842,9 +842,9 @@ namespace OpenSim.Region.Framework.Scenes
maxX = -256f;
maxY = -256f;
maxZ = -256f;
minX = 256f;
minY = 256f;
minZ = 8192f;
minX = 10000f;
minY = 10000f;
minZ = 10000f;
SceneObjectPart[] parts = m_parts.GetArray();
for (int i = 0; i < parts.Length; i++)