aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandObject.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandObject.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
index 4f10fbf..48f58f0 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
@@ -194,6 +194,7 @@ namespace OpenSim.Region.CoreModules.World.Land
194 * m_scene.RegionInfo.ObjectCapacity) 194 * m_scene.RegionInfo.ObjectCapacity)
195 * m_scene.RegionInfo.RegionSettings.ObjectBonus) 195 * m_scene.RegionInfo.RegionSettings.ObjectBonus)
196 / 65536; 196 / 65536;
197 m_log.DebugFormat("Area: {0}, Capacity {1}, Bonus {2}, Parcel {3}", LandData.Area, m_scene.RegionInfo.ObjectCapacity, m_scene.RegionInfo.RegionSettings.ObjectBonus, parcelMax);
197 return parcelMax; 198 return parcelMax;
198 } 199 }
199 } 200 }
@@ -223,8 +224,9 @@ namespace OpenSim.Region.CoreModules.World.Land
223 else 224 else
224 { 225 {
225 //Normal Calculations 226 //Normal Calculations
226 int simMax = (int)(((float)LandData.SimwideArea / 65536.0f) 227 int simMax = (int)((long)LandData.SimwideArea
227 * (float)m_scene.RegionInfo.ObjectCapacity); 228 * (long)m_scene.RegionInfo.ObjectCapacity / 65536L);
229 m_log.DebugFormat("Simwide Area: {0}, Capacity {1}, SimMax {2}", LandData.SimwideArea, m_scene.RegionInfo.ObjectCapacity, simMax);
228 return simMax; 230 return simMax;
229 } 231 }
230 } 232 }