diff options
author | Justin Clark-Casey (justincc) | 2014-06-28 00:17:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-06-28 00:18:00 +0100 |
commit | cd031d129a6908bb12ce8a581419b599d42d535b (patch) | |
tree | 09986d702e28f821b0a46ea83835c16dfef94040 /OpenSim | |
parent | add LSL constant PRIM_ALPHA_MODE (diff) | |
download | opensim-SC_OLD-cd031d129a6908bb12ce8a581419b599d42d535b.zip opensim-SC_OLD-cd031d129a6908bb12ce8a581419b599d42d535b.tar.gz opensim-SC_OLD-cd031d129a6908bb12ce8a581419b599d42d535b.tar.bz2 opensim-SC_OLD-cd031d129a6908bb12ce8a581419b599d42d535b.tar.xz |
minor: change allow script crossings default in code to true in order to match OpenSimDefaults.ini
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index eff24f8..c901948 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -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 | ||