aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorUbitUmarov2019-02-05 02:25:04 +0000
committerUbitUmarov2019-02-05 02:25:04 +0000
commit874cc47617c091bb5dceea1d0acccdb1c89a820c (patch)
treee0e3ecaa1ba83d1dc30425db1c287ef6563d76d9 /OpenSim
parentenforce prim size restrictions on physical state change; Place restrictions o... (diff)
downloadopensim-SC-874cc47617c091bb5dceea1d0acccdb1c89a820c.zip
opensim-SC-874cc47617c091bb5dceea1d0acccdb1c89a820c.tar.gz
opensim-SC-874cc47617c091bb5dceea1d0acccdb1c89a820c.tar.bz2
opensim-SC-874cc47617c091bb5dceea1d0acccdb1c89a820c.tar.xz
allow more suicidal NonPhysicalPrimMax
Diffstat (limited to 'OpenSim')
-rwxr-xr-xOpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 785b4c3..0312262 100755
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -960,8 +960,8 @@ namespace OpenSim.Region.Framework.Scenes
960 { 960 {
961 m_maxNonphys = RegionInfo.NonphysPrimMax; 961 m_maxNonphys = RegionInfo.NonphysPrimMax;
962 } 962 }
963 if (m_maxNonphys > 2048) 963 if (m_maxNonphys > 65536)
964 m_maxNonphys = 2048; 964 m_maxNonphys = 65536;
965 965
966 m_minPhys = startupConfig.GetFloat("PhysicalPrimMin", m_minPhys); 966 m_minPhys = startupConfig.GetFloat("PhysicalPrimMin", m_minPhys);
967 if (RegionInfo.PhysPrimMin > 0) 967 if (RegionInfo.PhysPrimMin > 0)