diff options
author | Justin Clark-Casey (justincc) | 2013-09-19 20:24:08 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-19 20:26:08 +0100 |
commit | 83c113896ec518cef98880195f81bc6fe2d6a63f (patch) | |
tree | f01847a93f5a9bda06112c8ac1c987f2c360dd21 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | minor: Make config-include .ini files more consistent (diff) | |
download | opensim-SC-83c113896ec518cef98880195f81bc6fe2d6a63f.zip opensim-SC-83c113896ec518cef98880195f81bc6fe2d6a63f.tar.gz opensim-SC-83c113896ec518cef98880195f81bc6fe2d6a63f.tar.bz2 opensim-SC-83c113896ec518cef98880195f81bc6fe2d6a63f.tar.xz |
Create regression TestCrossOnSameSimulatorNoRootDestPerm() to check that avatars are not allowed to cross into a neighbour where they are not authorized, even if a child agent was allowed.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 758a012..4357b91 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -731,6 +731,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
731 | m_config = config; | 731 | m_config = config; |
732 | MinFrameTime = 0.089f; | 732 | MinFrameTime = 0.089f; |
733 | MinMaintenanceTime = 1; | 733 | MinMaintenanceTime = 1; |
734 | SeeIntoRegion = true; | ||
734 | 735 | ||
735 | Random random = new Random(); | 736 | Random random = new Random(); |
736 | 737 | ||
@@ -841,7 +842,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
841 | //Animation states | 842 | //Animation states |
842 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); | 843 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); |
843 | 844 | ||
844 | SeeIntoRegion = startupConfig.GetBoolean("see_into_region", true); | 845 | SeeIntoRegion = startupConfig.GetBoolean("see_into_region", SeeIntoRegion); |
845 | 846 | ||
846 | MaxUndoCount = startupConfig.GetInt("MaxPrimUndos", 20); | 847 | MaxUndoCount = startupConfig.GetInt("MaxPrimUndos", 20); |
847 | 848 | ||