diff options
author | lbsa71 | 2007-08-06 10:48:40 +0000 |
---|---|---|
committer | lbsa71 | 2007-08-06 10:48:40 +0000 |
commit | 9bdeb8af6f797e35b5322d6856ecc488340c9453 (patch) | |
tree | c937a183725603e2b5cdebc525308aee517de597 /OpenSim/Region/ClientStack | |
parent | And its license file. (diff) | |
download | opensim-SC_OLD-9bdeb8af6f797e35b5322d6856ecc488340c9453.zip opensim-SC_OLD-9bdeb8af6f797e35b5322d6856ecc488340c9453.tar.gz opensim-SC_OLD-9bdeb8af6f797e35b5322d6856ecc488340c9453.tar.bz2 opensim-SC_OLD-9bdeb8af6f797e35b5322d6856ecc488340c9453.tar.xz |
* SimpleApp works again:
* NetworkServersInfo settable without config file
* DefaultHomeLoc throws if getted before setted
* Removed nonsensical sandbox distinction
* Refactored default config file creation
* Some more small refactorings on shapes
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 008b4c7..5683b31 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -41,6 +41,7 @@ using libsecondlife; | |||
41 | using OpenSim.Region.Environment.Scenes; | 41 | using OpenSim.Region.Environment.Scenes; |
42 | using OpenSim.Framework.Communications; | 42 | using OpenSim.Framework.Communications; |
43 | using OpenSim.Framework.Communications.Caches; | 43 | using OpenSim.Framework.Communications.Caches; |
44 | using OpenSim.Region.Communications.Local; | ||
44 | 45 | ||
45 | namespace OpenSim.Region.ClientStack | 46 | namespace OpenSim.Region.ClientStack |
46 | { | 47 | { |
@@ -78,6 +79,7 @@ namespace OpenSim.Region.ClientStack | |||
78 | m_httpServer.Start(); | 79 | m_httpServer.Start(); |
79 | 80 | ||
80 | m_inventoryCache = new InventoryCache(); | 81 | m_inventoryCache = new InventoryCache(); |
82 | m_commsManager = new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache); | ||
81 | } | 83 | } |
82 | 84 | ||
83 | protected abstract void Initialize(); | 85 | protected abstract void Initialize(); |