aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/RegionApplicationBase.cs
diff options
context:
space:
mode:
authorlbsa712007-08-06 10:48:40 +0000
committerlbsa712007-08-06 10:48:40 +0000
commit9bdeb8af6f797e35b5322d6856ecc488340c9453 (patch)
treec937a183725603e2b5cdebc525308aee517de597 /OpenSim/Region/ClientStack/RegionApplicationBase.cs
parentAnd its license file. (diff)
downloadopensim-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/RegionApplicationBase.cs')
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs2
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;
41using OpenSim.Region.Environment.Scenes; 41using OpenSim.Region.Environment.Scenes;
42using OpenSim.Framework.Communications; 42using OpenSim.Framework.Communications;
43using OpenSim.Framework.Communications.Caches; 43using OpenSim.Framework.Communications.Caches;
44using OpenSim.Region.Communications.Local;
44 45
45namespace OpenSim.Region.ClientStack 46namespace 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();