diff options
author | Justin Clarke Casey | 2008-05-22 00:18:33 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-22 00:18:33 +0000 |
commit | 2e758172f019e3dc7300b2167a652a54e9f0c436 (patch) | |
tree | ff35ade667b152f1a9f0377f920e7d49a3f02838 /OpenSim/Region/Application | |
parent | * Send VersionInfo string instead of the hardcoded Scene string to the "About... (diff) | |
download | opensim-SC_OLD-2e758172f019e3dc7300b2167a652a54e9f0c436.zip opensim-SC_OLD-2e758172f019e3dc7300b2167a652a54e9f0c436.tar.gz opensim-SC_OLD-2e758172f019e3dc7300b2167a652a54e9f0c436.tar.bz2 opensim-SC_OLD-2e758172f019e3dc7300b2167a652a54e9f0c436.tar.xz |
* Fix circular dependency from last checkin by passing version as a parameter to Scene rather than referencing VersionInfo directly
* Butt ugly solution
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index a48b580..4031634 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -622,7 +622,8 @@ namespace OpenSim | |||
622 | return | 622 | return |
623 | new Scene(regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache, | 623 | new Scene(regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache, |
624 | storageManager, m_httpServer, | 624 | storageManager, m_httpServer, |
625 | m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config); | 625 | m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config, |
626 | VersionInfo.Version); | ||
626 | 627 | ||
627 | } | 628 | } |
628 | 629 | ||