aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorUbitUmarov2015-09-03 20:51:30 +0100
committerUbitUmarov2015-09-03 20:51:30 +0100
commit7bfa311e3276ace053ef053eb32d9ce008422268 (patch)
treeb7b37525d1b9b0c7d35cc83a2a4626370265f18f /OpenSim/Region/Application
parentfix CM_api compile error (diff)
downloadopensim-SC_OLD-7bfa311e3276ace053ef053eb32d9ce008422268.zip
opensim-SC_OLD-7bfa311e3276ace053ef053eb32d9ce008422268.tar.gz
opensim-SC_OLD-7bfa311e3276ace053ef053eb32d9ce008422268.tar.bz2
opensim-SC_OLD-7bfa311e3276ace053ef053eb32d9ce008422268.tar.xz
fix a old bug i added: MaxWearables can't be changed in runtime
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index a499811..a2ba8c0 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -109,7 +109,6 @@ namespace OpenSim
109 m_timeInterval = startupConfig.GetInt("timer_Interval", 1200); 109 m_timeInterval = startupConfig.GetInt("timer_Interval", 1200);
110 } 110 }
111 111
112 AvatarWearable.MAX_WEARABLES = startupConfig.GetInt("max_wearables", AvatarWearable.MAX_WEARABLES);
113 string asyncCallMethodStr = startupConfig.GetString("async_call_method", String.Empty); 112 string asyncCallMethodStr = startupConfig.GetString("async_call_method", String.Empty);
114 FireAndForgetMethod asyncCallMethod; 113 FireAndForgetMethod asyncCallMethod;
115 if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod)) 114 if (!String.IsNullOrEmpty(asyncCallMethodStr) && Utils.EnumTryParse<FireAndForgetMethod>(asyncCallMethodStr, out asyncCallMethod))