From aea5f186c566605e194991d528dbe447f69ac60b Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 11 Sep 2019 14:03:25 +0100 Subject: remove a config option that controled a useless sim feature. note that at this point, and as normal on master, appearence/bakes etc may have a few more issues than before, as always thanks for your help testing it, and hapy clouds --- OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs index bcba142..08c2b38 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs @@ -78,7 +78,6 @@ namespace OpenSim.Region.ClientStack.Linden private string m_GridURL = string.Empty; private bool m_doScriptSyntax; - private bool m_BoMSupported = false; static private object m_scriptSyntaxLock = new object(); static private UUID m_scriptSyntaxID = UUID.Zero; @@ -113,8 +112,6 @@ namespace OpenSim.Region.ClientStack.Linden m_GridName = Util.GetConfigVarFromSections( source, "gridname", new string[] { "GridInfo", "SimulatorFeatures" }, String.Empty); m_doScriptSyntax = config.GetBoolean("ScriptSyntax", m_doScriptSyntax); - m_BoMSupported = config.GetBoolean("BoMSupported", m_BoMSupported); - } ReadScriptSyntax(); @@ -164,8 +161,7 @@ namespace OpenSim.Region.ClientStack.Linden m_features["MeshUploadEnabled"] = true; m_features["MeshXferEnabled"] = true; - if(m_BoMSupported) - m_features["BakesOnMeshEnabled"] = true; + m_features["BakesOnMeshEnabled"] = true; m_features["PhysicsMaterialsEnabled"] = true; -- cgit v1.1