mirror of
https://github.com/opensim/opensim.git
synced 2026-08-16 19:05:41 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58b7b39db6 | ||
|
|
0509d7de9b | ||
|
|
78cb44c0c9 |
@@ -57,7 +57,7 @@ namespace OpenSim.Framework
|
||||
public const int LandUnit = 4; // parcels only have sizes multiple of this
|
||||
|
||||
public const float MinSimulationHeight = -100f;
|
||||
public const float MaxSimulationHeight = 50000f;
|
||||
public const float MaxSimulationHeight = 65536f;
|
||||
public const float MinTerrainHeightmap = -100f;
|
||||
public const float MaxTerrainHeightmap = 4000f;
|
||||
public const float MinWaterHeight = 0;
|
||||
|
||||
@@ -130,14 +130,10 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||
|
||||
//m_log.DebugFormat("[MAPSEARCHMODULE]: search {0} returned {1} regions", mapName, regionInfos.Count);
|
||||
|
||||
MapBlockData data;
|
||||
if (regionInfos != null && regionInfos.Count > 0)
|
||||
{
|
||||
foreach (GridRegion info in regionInfos)
|
||||
{
|
||||
data = new MapBlockData();
|
||||
data.Agents = 0;
|
||||
data.Access = info.Access;
|
||||
MapBlockData block = new MapBlockData();
|
||||
MapBlockFromGridRegion(block, info, flags);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user