Create a working configuration hook to allow LLClient parameters from

Opensim.ini to take force
0.6.5-rc1
Melanie Thielker 2009-05-04 01:57:18 +00:00
parent 0ecd965b8c
commit 8ac4ec738b
2 changed files with 8 additions and 3 deletions

View File

@ -136,9 +136,9 @@ namespace OpenSim.Region.Framework.Scenes
get { return m_capsModule; } get { return m_capsModule; }
} }
public IConfigSource Config protected override IConfigSource GetConfig()
{ {
get { return m_config; } return m_config;
} }
// Central Update Loop // Central Update Loop

View File

@ -53,7 +53,12 @@ namespace OpenSim.Region.Framework.Scenes
public IConfigSource Config public IConfigSource Config
{ {
get { return null; } get { return GetConfig(); }
}
protected virtual IConfigSource GetConfig()
{
return null;
} }
/// <value> /// <value>