aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/world
diff options
context:
space:
mode:
authorMW2007-04-02 15:48:01 +0000
committerMW2007-04-02 15:48:01 +0000
commitfdc9ed89b4adaa7f23ca06613b2ee36c30895021 (patch)
tree3c90368815d37055bac61ee3bdce5b5593715e2a /OpenSim.RegionServer/world
parentAdded OpenSim.GenericConfig.Xml project, so we can swap to a more generic con... (diff)
downloadopensim-SC_OLD-fdc9ed89b4adaa7f23ca06613b2ee36c30895021.zip
opensim-SC_OLD-fdc9ed89b4adaa7f23ca06613b2ee36c30895021.tar.gz
opensim-SC_OLD-fdc9ed89b4adaa7f23ca06613b2ee36c30895021.tar.bz2
opensim-SC_OLD-fdc9ed89b4adaa7f23ca06613b2ee36c30895021.tar.xz
OpenSim no longer uses OpenSim.Config.SimConfigDb4o, it now uses OpenSim.GenericConfig.Xml (or a class implementing IGenericConfig).
Diffstat (limited to 'OpenSim.RegionServer/world')
-rw-r--r--OpenSim.RegionServer/world/World.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim.RegionServer/world/World.cs b/OpenSim.RegionServer/world/World.cs
index 4f8e53d..e848cad 100644
--- a/OpenSim.RegionServer/world/World.cs
+++ b/OpenSim.RegionServer/world/World.cs
@@ -31,16 +31,14 @@ namespace OpenSim.world
31 private Dictionary<uint, SimClient> m_clientThreads; 31 private Dictionary<uint, SimClient> m_clientThreads;
32 private ulong m_regionHandle; 32 private ulong m_regionHandle;
33 private string m_regionName; 33 private string m_regionName;
34 private SimConfig m_cfg;
35 private InventoryCache _inventoryCache; 34 private InventoryCache _inventoryCache;
36 private AssetCache _assetCache; 35 private AssetCache _assetCache;
37 36
38 public World(Dictionary<uint, SimClient> clientThreads, ulong regionHandle, string regionName, SimConfig cfg) 37 public World(Dictionary<uint, SimClient> clientThreads, ulong regionHandle, string regionName)
39 { 38 {
40 m_clientThreads = clientThreads; 39 m_clientThreads = clientThreads;
41 m_regionHandle = regionHandle; 40 m_regionHandle = regionHandle;
42 m_regionName = regionName; 41 m_regionName = regionName;
43 m_cfg = cfg;
44 42
45 OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance"); 43 OpenSim.Framework.Console.MainConsole.Instance.WriteLine("World.cs - creating new entitities instance");
46 Entities = new Dictionary<libsecondlife.LLUUID, Entity>(); 44 Entities = new Dictionary<libsecondlife.LLUUID, Entity>();