Fix regression from 056a6ee7
because the RemoteSimulationConnector uses a copy of the LocalSimulationConnector but never initializes it (hence ServiceVersion was never set)
parent
840be97e40
commit
ba9daf849e
|
@ -63,12 +63,15 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private bool m_ModuleEnabled = false;
|
private bool m_ModuleEnabled = false;
|
||||||
|
|
||||||
|
public LocalSimulationConnectorModule()
|
||||||
|
{
|
||||||
|
ServiceVersion = "SIMULATION/0.2";
|
||||||
|
}
|
||||||
|
|
||||||
#region Region Module interface
|
#region Region Module interface
|
||||||
|
|
||||||
public void Initialise(IConfigSource config)
|
public void Initialise(IConfigSource config)
|
||||||
{
|
{
|
||||||
ServiceVersion = "SIMULATION/0.2";
|
|
||||||
|
|
||||||
IConfig moduleConfig = config.Configs["Modules"];
|
IConfig moduleConfig = config.Configs["Modules"];
|
||||||
if (moduleConfig != null)
|
if (moduleConfig != null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue