diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index eff24f8..3957ba6 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -192,7 +192,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
192 | /// <summary> | 192 | /// <summary> |
193 | /// Maximum value of the size of a physical prim in each axis | 193 | /// Maximum value of the size of a physical prim in each axis |
194 | /// </summary> | 194 | /// </summary> |
195 | public float m_maxPhys = 10; | 195 | public float m_maxPhys = 64; |
196 | 196 | ||
197 | /// <summary> | 197 | /// <summary> |
198 | /// Max prims an object will hold | 198 | /// Max prims an object will hold |
@@ -201,7 +201,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
201 | 201 | ||
202 | public bool m_clampPrimSize; | 202 | public bool m_clampPrimSize; |
203 | public bool m_trustBinaries; | 203 | public bool m_trustBinaries; |
204 | public bool m_allowScriptCrossings; | 204 | public bool m_allowScriptCrossings = true; |
205 | public bool m_useFlySlow; | 205 | public bool m_useFlySlow; |
206 | public bool m_useTrashOnDelete = true; | 206 | public bool m_useTrashOnDelete = true; |
207 | 207 | ||
@@ -1894,6 +1894,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1894 | RegionInfo.RegionID, | 1894 | RegionInfo.RegionID, |
1895 | RegionInfo.RegionLocX, RegionInfo.RegionLocY, | 1895 | RegionInfo.RegionLocX, RegionInfo.RegionLocY, |
1896 | RegionInfo.RegionSizeX, RegionInfo.RegionSizeY); | 1896 | RegionInfo.RegionSizeX, RegionInfo.RegionSizeY); |
1897 | |||
1897 | if (error != String.Empty) | 1898 | if (error != String.Empty) |
1898 | throw new Exception(error); | 1899 | throw new Exception(error); |
1899 | } | 1900 | } |