diff options
author | BlueWall | 2012-09-18 09:47:15 -0400 |
---|---|---|
committer | BlueWall | 2012-09-18 09:53:45 -0400 |
commit | d29fc5305222abcc081daa7aa4b0b017d04bbae1 (patch) | |
tree | f3f63ea561e60d426ef41e218a7a591a9b603fb4 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Moving ScriptModuleComms into the CoreModules tree. (diff) | |
download | opensim-SC_OLD-d29fc5305222abcc081daa7aa4b0b017d04bbae1.zip opensim-SC_OLD-d29fc5305222abcc081daa7aa4b0b017d04bbae1.tar.gz opensim-SC_OLD-d29fc5305222abcc081daa7aa4b0b017d04bbae1.tar.bz2 opensim-SC_OLD-d29fc5305222abcc081daa7aa4b0b017d04bbae1.tar.xz |
Fix some inconsistencies in configurartion: NonPhys prims
Fix inconsistencies between configuration parameter names and their description names. Changing the configuration parameters for non physical prim size min-max from Nonphys* to NonPhys*.
Please update your OpenSim.ini and Regions.ini to reflect these changes.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 9c3c53d..a27e126 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -116,7 +116,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
116 | /// <summary> | 116 | /// <summary> |
117 | /// Minimum value of the size of a physical prim in each axis | 117 | /// Minimum value of the size of a physical prim in each axis |
118 | /// </summary> | 118 | /// </summary> |
119 | public float m_minPhys = 0.01f; | 119 | public float m_minPhys = 0.001f; |
120 | 120 | ||
121 | /// <summary> | 121 | /// <summary> |
122 | /// Maximum value of the size of a physical prim in each axis | 122 | /// Maximum value of the size of a physical prim in each axis |
@@ -744,13 +744,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
744 | PhysicalPrims = startupConfig.GetBoolean("physical_prim", PhysicalPrims); | 744 | PhysicalPrims = startupConfig.GetBoolean("physical_prim", PhysicalPrims); |
745 | CollidablePrims = startupConfig.GetBoolean("collidable_prim", CollidablePrims); | 745 | CollidablePrims = startupConfig.GetBoolean("collidable_prim", CollidablePrims); |
746 | 746 | ||
747 | m_minNonphys = startupConfig.GetFloat("NonphysicalPrimMin", m_minNonphys); | 747 | m_minNonphys = startupConfig.GetFloat("NonPhysicalPrimMin", m_minNonphys); |
748 | if (RegionInfo.NonphysPrimMin > 0) | 748 | if (RegionInfo.NonphysPrimMin > 0) |
749 | { | 749 | { |
750 | m_minNonphys = RegionInfo.NonphysPrimMin; | 750 | m_minNonphys = RegionInfo.NonphysPrimMin; |
751 | } | 751 | } |
752 | 752 | ||
753 | m_maxNonphys = startupConfig.GetFloat("NonphysicalPrimMax", m_maxNonphys); | 753 | m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); |
754 | if (RegionInfo.NonphysPrimMax > 0) | 754 | if (RegionInfo.NonphysPrimMax > 0) |
755 | { | 755 | { |
756 | m_maxNonphys = RegionInfo.NonphysPrimMax; | 756 | m_maxNonphys = RegionInfo.NonphysPrimMax; |