diff options
Diffstat (limited to 'OpenSim/Region/Communications/Local/CommunicationsLocal.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index aa0105c..15167fb 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |||
@@ -60,15 +60,15 @@ namespace OpenSim.Region.Communications.Local | |||
60 | 60 | ||
61 | InvenServices = new LocalInventoryService(); | 61 | InvenServices = new LocalInventoryService(); |
62 | InvenServices.AddPlugin(m_settings.InventoryPlugin); | 62 | InvenServices.AddPlugin(m_settings.InventoryPlugin); |
63 | InventoryServer = InvenServices; | 63 | m_inventoryServer = InvenServices; |
64 | 64 | ||
65 | UserServices = new LocalUserServices(this, serversInfo); | 65 | UserServices = new LocalUserServices(this, serversInfo); |
66 | UserServices.AddPlugin(m_settings.UserDatabasePlugin); | 66 | UserServices.AddPlugin(m_settings.UserDatabasePlugin); |
67 | UserServer = UserServices; | 67 | m_userServer = UserServices; |
68 | 68 | ||
69 | InstanceServices = new LocalBackEndServices(); | 69 | InstanceServices = new LocalBackEndServices(); |
70 | GridServer = InstanceServices; | 70 | m_gridServer = InstanceServices; |
71 | InterRegion = InstanceServices; | 71 | m_interRegion = InstanceServices; |
72 | 72 | ||
73 | //CapsServices = new CAPSService(httpServer); | 73 | //CapsServices = new CAPSService(httpServer); |
74 | 74 | ||