diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index d745fdc..7963785 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -607,13 +607,13 @@ namespace OpenSim | |||
607 | { | 607 | { |
608 | bool hgrid = ConfigSource.Source.Configs["Startup"].GetBoolean("hypergrid", false); | 608 | bool hgrid = ConfigSource.Source.Configs["Startup"].GetBoolean("hypergrid", false); |
609 | if (hgrid) | 609 | if (hgrid) |
610 | return HGCommands.CreateScene(regionInfo, circuitManager, m_commsManager, | 610 | return HGCommands.CreateScene(regionInfo, circuitManager, |
611 | storageManager, m_moduleLoader, m_configSettings, m_config, m_version); | 611 | storageManager, m_moduleLoader, m_configSettings, m_config, m_version); |
612 | 612 | ||
613 | SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager); | 613 | SceneCommunicationService sceneGridService = new SceneCommunicationService(); |
614 | 614 | ||
615 | return new Scene( | 615 | return new Scene( |
616 | regionInfo, circuitManager, m_commsManager, sceneGridService, | 616 | regionInfo, circuitManager, sceneGridService, |
617 | storageManager, m_moduleLoader, false, m_configSettings.PhysicalPrim, | 617 | storageManager, m_moduleLoader, false, m_configSettings.PhysicalPrim, |
618 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); | 618 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); |
619 | } | 619 | } |