mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 10:46:00 +08:00
Create a working configuration hook to allow LLClient parameters from
Opensim.ini to take force
This commit is contained in:
@@ -136,9 +136,9 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
get { return m_capsModule; }
|
||||
}
|
||||
|
||||
public IConfigSource Config
|
||||
protected override IConfigSource GetConfig()
|
||||
{
|
||||
get { return m_config; }
|
||||
return m_config;
|
||||
}
|
||||
|
||||
// Central Update Loop
|
||||
|
||||
@@ -53,7 +53,12 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
public IConfigSource Config
|
||||
{
|
||||
get { return null; }
|
||||
get { return GetConfig(); }
|
||||
}
|
||||
|
||||
protected virtual IConfigSource GetConfig()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <value>
|
||||
|
||||
Reference in New Issue
Block a user