From 8fc1dfec792f3527c7f153bd49852519d561d17a Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sun, 15 Jul 2007 15:40:50 +0000 Subject: * Added loading methods for NullStorage. --- OpenSim/Region/Environment/Scenes/Scene.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 64f51d8..782c0fd 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -39,6 +39,7 @@ using OpenSim.Framework.Servers; using OpenSim.Framework.Types; using OpenSim.Physics.Manager; using OpenSim.Region.Caches; +using OpenSim.Region.Interfaces; using OpenSim.Region.Scripting; using OpenSim.Region.Terrain; using Caps = OpenSim.Region.Capabilities.Caps; @@ -65,6 +66,7 @@ namespace OpenSim.Region.Environment.Scenes protected AuthenticateSessionsBase authenticateHandler; protected RegionCommsListener regionCommsHost; protected CommunicationsManager commsManager; + protected StorageManager storageManager; protected Dictionary capsHandlers = new Dictionary(); protected BaseHttpServer httpListener; @@ -118,11 +120,12 @@ namespace OpenSim.Region.Environment.Scenes /// Dictionary to contain client threads /// Region Handle for this region /// Region Name for this region - public Scene(ClientManager clientManager, RegionInfo regInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, BaseHttpServer httpServer) + public Scene(ClientManager clientManager, RegionInfo regInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach, StorageManager storeManager, BaseHttpServer httpServer) { updateLock = new Mutex(false); this.authenticateHandler = authen; this.commsManager = commsMan; + this.storageManager = storeManager; this.assetCache = assetCach; m_clientManager = clientManager; m_regInfo = regInfo; -- cgit v1.1