aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2008-12-06 18:33:13 +0000
committerMelanie Thielker2008-12-06 18:33:13 +0000
commitc5bd7975e8e1605a80ac719f53bf98a3e57b71b7 (patch)
tree725321e1cb66ebf623026f3043b6d4f71e8d0f6b
parentFix an ArgumentNullException when moving a DotNet scripted object to the next... (diff)
downloadopensim-SC_OLD-c5bd7975e8e1605a80ac719f53bf98a3e57b71b7.zip
opensim-SC_OLD-c5bd7975e8e1605a80ac719f53bf98a3e57b71b7.tar.gz
opensim-SC_OLD-c5bd7975e8e1605a80ac719f53bf98a3e57b71b7.tar.bz2
opensim-SC_OLD-c5bd7975e8e1605a80ac719f53bf98a3e57b71b7.tar.xz
Change AllowScriptCrossings to be AllowScriptCrossing to match the
.ini files already out there
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 79a626e..3d21820 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -341,7 +341,7 @@ namespace OpenSim.Region.Environment.Scenes
341 m_maxPhys = startupConfig.GetFloat("PhysicalPrimMax", 10.0f); 341 m_maxPhys = startupConfig.GetFloat("PhysicalPrimMax", 10.0f);
342 m_clampPrimSize = startupConfig.GetBoolean("ClampPrimSize", false); 342 m_clampPrimSize = startupConfig.GetBoolean("ClampPrimSize", false);
343 m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", false); 343 m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", false);
344 m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossings", false); 344 m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossing", false);
345 m_dontPersistBefore = 345 m_dontPersistBefore =
346 startupConfig.GetLong("MinimumTimeBeforePersistenceConsidered", DEFAULT_MIN_TIME_FOR_PERSISTENCE); 346 startupConfig.GetLong("MinimumTimeBeforePersistenceConsidered", DEFAULT_MIN_TIME_FOR_PERSISTENCE);
347 m_dontPersistBefore *= 10000000; 347 m_dontPersistBefore *= 10000000;