From 40f7062d0271f54753bbe561a4c03b37f1494940 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Sat, 28 Jun 2014 00:17:04 +0100 Subject: [PATCH] minor: change allow script crossings default in code to true in order to match OpenSimDefaults.ini --- OpenSim/Region/Framework/Scenes/Scene.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index eff24f8c78..c90194802c 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -201,7 +201,7 @@ namespace OpenSim.Region.Framework.Scenes public bool m_clampPrimSize; public bool m_trustBinaries; - public bool m_allowScriptCrossings; + public bool m_allowScriptCrossings = true; public bool m_useFlySlow; public bool m_useTrashOnDelete = true;