From afa85e6b3cde51704aa65d291d626f9babb095d5 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 23 Sep 2014 18:11:05 +0100 Subject: Set appearance refresh to false by default. This setting was originally added some time ago to deal with issues where appearance was not received properly by all users. However, it does not scale well with large numbers of agents. Disabling to see if the original problem has abated or whether this will have to be tackled in another way. --- OpenSim/Region/Framework/Scenes/Scene.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Framework') diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index a0b2123..0399a52 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -1018,7 +1018,7 @@ namespace OpenSim.Region.Framework.Scenes } // FIXME: Ultimately this should be in a module. - SendPeriodicAppearanceUpdates = true; + SendPeriodicAppearanceUpdates = false; IConfig appearanceConfig = m_config.Configs["Appearance"]; if (appearanceConfig != null) -- cgit v1.1