aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs
diff options
context:
space:
mode:
authorDiva Canto2016-06-19 09:17:04 -0700
committerDiva Canto2016-06-19 09:17:04 -0700
commit12b73603cc4605955d9ea60ad66b4a85ea3d44ca (patch)
tree0ccdfed4f2b2db7644fb93225170685aa50866e3 /OpenSim/Region/CoreModules/World/Land/LandObject.cs
parentMantis #7917: regression on prim limits module. (diff)
downloadopensim-SC_OLD-12b73603cc4605955d9ea60ad66b4a85ea3d44ca.zip
opensim-SC_OLD-12b73603cc4605955d9ea60ad66b4a85ea3d44ca.tar.gz
opensim-SC_OLD-12b73603cc4605955d9ea60ad66b4a85ea3d44ca.tar.bz2
opensim-SC_OLD-12b73603cc4605955d9ea60ad66b4a85ea3d44ca.tar.xz
Still related to mantis #7917, parcel prims info. Now sending the correct numbers for "Simulator primitive usage" related to the parcel owner, not the entire region.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandObject.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
index 45ad022..6b37dad 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
@@ -362,7 +362,8 @@ namespace OpenSim.Region.CoreModules.World.Land
362 int simMax = (int)( (long)LandData.SimwideArea 362 int simMax = (int)( (long)LandData.SimwideArea
363 * (long)m_scene.RegionInfo.ObjectCapacity 363 * (long)m_scene.RegionInfo.ObjectCapacity
364 / (long)(m_scene.RegionInfo.RegionSizeX * m_scene.RegionInfo.RegionSizeY) ); 364 / (long)(m_scene.RegionInfo.RegionSizeX * m_scene.RegionInfo.RegionSizeY) );
365 //m_log.DebugFormat("Simwide Area: {0}, Capacity {1}, SimMax {2}", LandData.SimwideArea, m_scene.RegionInfo.ObjectCapacity, simMax); 365 //m_log.DebugFormat("Simwide Area: {0}, Capacity {1}, SimMax {2}, SimWidePrims {3}",
366 // LandData.SimwideArea, m_scene.RegionInfo.ObjectCapacity, simMax, LandData.SimwidePrims);
366 return simMax; 367 return simMax;
367 } 368 }
368 } 369 }