Create a working configuration hook to allow LLClient parameters from
Opensim.ini to take force0.6.5-rc1
parent
0ecd965b8c
commit
8ac4ec738b
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue