diff options
author | UbitUmarov | 2017-05-04 12:35:42 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-04 12:36:08 +0100 |
commit | 04a50b47bfe2b10dfaad9fd67c2247ae40e97d84 (patch) | |
tree | 872e73fae526aa6d58da7b85d649558859525f2e /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | do the same in the cases we are just moving parts around and not changing th... (diff) | |
download | opensim-SC-04a50b47bfe2b10dfaad9fd67c2247ae40e97d84.zip opensim-SC-04a50b47bfe2b10dfaad9fd67c2247ae40e97d84.tar.gz opensim-SC-04a50b47bfe2b10dfaad9fd67c2247ae40e97d84.tar.bz2 opensim-SC-04a50b47bfe2b10dfaad9fd67c2247ae40e97d84.tar.xz |
the new options i add where actually bad idea, they would make the
compatibility issue ethernal. Removed and extended the ugly date hack to
group share outwards propagation, until a better way is found at least
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 205a321..e709d6c 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -239,16 +239,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
239 | public bool LegacySitOffsets = true; | 239 | public bool LegacySitOffsets = true; |
240 | 240 | ||
241 | /// <summary> | 241 | /// <summary> |
242 | /// set false to not propagare group rights outwards as legacy did | ||
243 | /// </summary> | ||
244 | public bool PropagateGroupShareOutwards = true; | ||
245 | |||
246 | /// <summary> | ||
247 | /// set false to not propagare Everyone rights outwards as legacy did | ||
248 | /// </summary> | ||
249 | public bool PropagateAnyOneOutwards = true; | ||
250 | |||
251 | /// <summary> | ||
252 | /// Can avatars cross from and to this region? | 242 | /// Can avatars cross from and to this region? |
253 | /// </summary> | 243 | /// </summary> |
254 | public bool AllowAvatarCrossing { get; set; } | 244 | public bool AllowAvatarCrossing { get; set; } |
@@ -990,8 +980,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
990 | 980 | ||
991 | // old versions compatibility | 981 | // old versions compatibility |
992 | LegacySitOffsets = startupConfig.GetBoolean("LegacySitOffsets", LegacySitOffsets); | 982 | LegacySitOffsets = startupConfig.GetBoolean("LegacySitOffsets", LegacySitOffsets); |
993 | PropagateGroupShareOutwards = startupConfig.GetBoolean("PropagateGroupShareOutwards", PropagateGroupShareOutwards); | ||
994 | PropagateAnyOneOutwards = startupConfig.GetBoolean("PropagateAnyOneOutwards", PropagateAnyOneOutwards); | ||
995 | 983 | ||
996 | if (m_defaultDrawDistance > m_maxDrawDistance) | 984 | if (m_defaultDrawDistance > m_maxDrawDistance) |
997 | m_defaultDrawDistance = m_maxDrawDistance; | 985 | m_defaultDrawDistance = m_maxDrawDistance; |