allow more suicidal NonPhysicalPrimMax

0.9.1.0-post-fixes
UbitUmarov 2019-02-05 02:25:04 +00:00
parent 175817fe55
commit 874cc47617
1 changed files with 2 additions and 2 deletions

View File

@ -960,8 +960,8 @@ namespace OpenSim.Region.Framework.Scenes
{
m_maxNonphys = RegionInfo.NonphysPrimMax;
}
if (m_maxNonphys > 2048)
m_maxNonphys = 2048;
if (m_maxNonphys > 65536)
m_maxNonphys = 65536;
m_minPhys = startupConfig.GetFloat("PhysicalPrimMin", m_minPhys);
if (RegionInfo.PhysPrimMin > 0)