diff options
author | BlueWall | 2012-09-18 10:09:32 -0400 |
---|---|---|
committer | BlueWall | 2012-09-18 10:12:32 -0400 |
commit | 9d973ec3b377f51eab4cbd8ef7528d91477fc1d7 (patch) | |
tree | 2f9ec14b07720df8be1daa72ae3b48b1a1b7180a /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Fix some inconsistencies in configurartion: NonPhys prims (diff) | |
download | opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.zip opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.gz opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.bz2 opensim-SC_OLD-9d973ec3b377f51eab4cbd8ef7528d91477fc1d7.tar.xz |
Cleanup from prev. commit
Make correct defaults to Phys/nonPhys prims to fix errors in prev. commit
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | 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 a27e126..c873cdf 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -106,7 +106,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
106 | /// <summary> | 106 | /// <summary> |
107 | /// Minimum value of the size of a non-physical prim in each axis | 107 | /// Minimum value of the size of a non-physical prim in each axis |
108 | /// </summary> | 108 | /// </summary> |
109 | public float m_minNonphys = 0.01f; | 109 | public float m_minNonphys = 0.001f; |
110 | 110 | ||
111 | /// <summary> | 111 | /// <summary> |
112 | /// Maximum value of the size of a non-physical prim in each axis | 112 | /// Maximum value of the size of a non-physical prim in each axis |
@@ -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.001f; | 119 | public float m_minPhys = 0.01f; |
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 |