diff options
* Added prototypical AvatarFactory module interface to load avatar parameters
* Added dump_assets_to_file option to enable asset dumping for debug
* normalized some namespaces
* InventoryFolder renamed to InventoryFolderImpl to
Diffstat (limited to 'OpenSim/Region/Communications/Local/CommunicationsLocal.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index e57e445..13af96c 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |||
@@ -35,8 +35,15 @@ namespace OpenSim.Region.Communications.Local | |||
35 | { | 35 | { |
36 | public class CommunicationsLocal : CommunicationsManager | 36 | public class CommunicationsLocal : CommunicationsManager |
37 | { | 37 | { |
38 | public CommunicationsLocal(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache, IUserService userService, LocalInventoryService inventoryService, IInterRegionCommunications interRegionService, IGridServices gridService) | 38 | public CommunicationsLocal( |
39 | : base(serversInfo, httpServer, assetCache) | 39 | NetworkServersInfo serversInfo, |
40 | BaseHttpServer httpServer, | ||
41 | AssetCache assetCache, | ||
42 | IUserService userService, | ||
43 | LocalInventoryService inventoryService, | ||
44 | IInterRegionCommunications interRegionService, | ||
45 | IGridServices gridService, bool dumpAssetsToFile ) | ||
46 | : base(serversInfo, httpServer, assetCache, dumpAssetsToFile) | ||
40 | { | 47 | { |
41 | m_inventoryService = inventoryService; | 48 | m_inventoryService = inventoryService; |
42 | m_userService = userService; | 49 | m_userService = userService; |