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/Framework | |
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/Framework')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 928e798..016f2a6 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -643,11 +643,11 @@ namespace OpenSim.Framework | |||
643 | 643 | ||
644 | #region Prim stuff | 644 | #region Prim stuff |
645 | 645 | ||
646 | m_nonphysPrimMin = config.GetFloat("NonphysicalPrimMin", 0); | 646 | m_nonphysPrimMin = config.GetFloat("NonPhysicalPrimMin", 0); |
647 | allKeys.Remove("NonphysicalPrimMin"); | 647 | allKeys.Remove("NonPhysicalPrimMin"); |
648 | 648 | ||
649 | m_nonphysPrimMax = config.GetInt("NonphysicalPrimMax", 0); | 649 | m_nonphysPrimMax = config.GetInt("NonPhysicalPrimMax", 0); |
650 | allKeys.Remove("NonphysicalPrimMax"); | 650 | allKeys.Remove("NonPhysicalPrimMax"); |
651 | 651 | ||
652 | m_physPrimMin = config.GetFloat("PhysicalPrimMin", 0); | 652 | m_physPrimMin = config.GetFloat("PhysicalPrimMin", 0); |
653 | allKeys.Remove("PhysicalPrimMin"); | 653 | allKeys.Remove("PhysicalPrimMin"); |