From fdb4fb3f3f474ec016dddca64797420eee639c04 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 21 Oct 2018 17:53:02 +0100 Subject: update script syntax --- OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs index e14e728..e9cda49 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs @@ -87,7 +87,7 @@ namespace OpenSim.Region.ClientStack.Linden public void Initialise(IConfigSource source) { IConfig config = source.Configs["SimulatorFeatures"]; - m_doScriptSyntax = false; + m_doScriptSyntax = true; if (config != null) { // @@ -344,7 +344,6 @@ namespace OpenSim.Region.ClientStack.Linden using (StreamReader sr = File.OpenText("ScriptSyntax.xml")) { StringBuilder sb = new StringBuilder(400*1024); - sb.Append("llsd-lsl-syntax-version2"); string s=""; char[] trimc = new char[] {' ','\t', '\n', '\r'}; @@ -355,7 +354,6 @@ namespace OpenSim.Region.ClientStack.Linden continue; sb.Append(s); } - sb.Append(""); m_scriptSyntaxXML = sb.ToString(); m_scriptSyntaxID = Util.ComputeSHA1UUID(m_scriptSyntaxXML); } -- cgit v1.1