diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 837a994..55c4fda 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -228,7 +228,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
228 | public bool m_allowScriptCrossings = true; | 228 | public bool m_allowScriptCrossings = true; |
229 | 229 | ||
230 | /// <summary> | 230 | /// <summary> |
231 | 231 | /// use legacy sittarget offsets to avoid contents breaks | |
232 | /// to compensate for SL bug | ||
233 | /// </summary> | ||
234 | public bool LegacySitOffsets = true; | ||
235 | |||
236 | /// <summary> | ||
232 | /// Can avatars cross from and to this region? | 237 | /// Can avatars cross from and to this region? |
233 | /// </summary> | 238 | /// </summary> |
234 | public bool AllowAvatarCrossing { get; set; } | 239 | public bool AllowAvatarCrossing { get; set; } |
@@ -960,6 +965,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
960 | m_defaultDrawDistance = startupConfig.GetFloat("DefaultDrawDistance", m_defaultDrawDistance); | 965 | m_defaultDrawDistance = startupConfig.GetFloat("DefaultDrawDistance", m_defaultDrawDistance); |
961 | m_maxDrawDistance = startupConfig.GetFloat("MaxDrawDistance", m_maxDrawDistance); | 966 | m_maxDrawDistance = startupConfig.GetFloat("MaxDrawDistance", m_maxDrawDistance); |
962 | 967 | ||
968 | LegacySitOffsets = startupConfig.GetBoolean("LegacyOpenSimSitOffsets", LegacySitOffsets); | ||
969 | |||
963 | if (m_defaultDrawDistance > m_maxDrawDistance) | 970 | if (m_defaultDrawDistance > m_maxDrawDistance) |
964 | m_defaultDrawDistance = m_maxDrawDistance; | 971 | m_defaultDrawDistance = m_maxDrawDistance; |
965 | 972 | ||