aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorBlueWall2012-02-04 21:52:55 -0500
committerBlueWall2012-02-04 21:52:55 -0500
commit13999dfc1df67222ffe3481ae4e45ca273ed5460 (patch)
tree9172fc2930d29b91d37279fceba6f5263261f2e9
parentchange NonPhysicalPrimMax to NonphysicalPrimMax in Scenes.cs to make the (diff)
downloadopensim-SC_OLD-13999dfc1df67222ffe3481ae4e45ca273ed5460.zip
opensim-SC_OLD-13999dfc1df67222ffe3481ae4e45ca273ed5460.tar.gz
opensim-SC_OLD-13999dfc1df67222ffe3481ae4e45ca273ed5460.tar.bz2
opensim-SC_OLD-13999dfc1df67222ffe3481ae4e45ca273ed5460.tar.xz
Set PhysPrimMax default to 0 so ini files won't be overridden
-rw-r--r--OpenSim/Framework/RegionInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index 1072e04..661b457 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -609,7 +609,7 @@ namespace OpenSim.Framework
609 // 609 //
610 m_nonphysPrimMax = config.GetInt("NonphysicalPrimMax", 0); 610 m_nonphysPrimMax = config.GetInt("NonphysicalPrimMax", 0);
611 allKeys.Remove("NonphysicalPrimMax"); 611 allKeys.Remove("NonphysicalPrimMax");
612 m_physPrimMax = config.GetInt("PhysicalPrimMax", 10); 612 m_physPrimMax = config.GetInt("PhysicalPrimMax", 0);
613 allKeys.Remove("PhysicalPrimMax"); 613 allKeys.Remove("PhysicalPrimMax");
614 m_clampPrimSize = config.GetBoolean("ClampPrimSize", false); 614 m_clampPrimSize = config.GetBoolean("ClampPrimSize", false);
615 allKeys.Remove("ClampPrimSize"); 615 allKeys.Remove("ClampPrimSize");