Fix regression from 056a6ee7 because the RemoteSimulationConnector uses a copy of the LocalSimulationConnector but never initializes it (hence ServiceVersion was never set)

TeleportWork
Justin Clark-Casey (justincc) 2013-07-26 22:52:08 +01:00
parent 840be97e40
commit ba9daf849e
1 changed files with 5 additions and 2 deletions

View File

@ -63,12 +63,15 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
/// </summary>
private bool m_ModuleEnabled = false;
public LocalSimulationConnectorModule()
{
ServiceVersion = "SIMULATION/0.2";
}
#region Region Module interface
public void Initialise(IConfigSource config)
{
ServiceVersion = "SIMULATION/0.2";
IConfig moduleConfig = config.Configs["Modules"];
if (moduleConfig != null)
{