diff options
Diffstat (limited to 'OpenSim')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
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) |