diff options
Diffstat (limited to 'OpenSim/Region/Communications/Hypergrid')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs | 10 | ||||
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs | 3 |
2 files changed, 6 insertions, 7 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs index feacb2f..799ec2a 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs | |||
@@ -69,15 +69,13 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
69 | m_log.Info("[HG]: Non-secureInventoryService."); | 69 | m_log.Info("[HG]: Non-secureInventoryService."); |
70 | 70 | ||
71 | HGUserServices userServices = new HGUserServices(this); | 71 | HGUserServices userServices = new HGUserServices(this); |
72 | // This plugin arrangement could eventually be configurable rather than hardcoded here. | 72 | // This plugin arrangement could eventually be configurable rather than hardcoded here. |
73 | OGS1UserDataPlugin userDataPlugin = new OGS1UserDataPlugin(this); | 73 | userServices.AddPlugin(new TemporaryUserProfilePlugin()); |
74 | userServices.AddPlugin(userDataPlugin); | 74 | userServices.AddPlugin(new OGS1UserDataPlugin(this)); |
75 | 75 | ||
76 | m_userService = userServices; | 76 | m_userService = userServices; |
77 | m_messageService = userServices; | 77 | m_messageService = userServices; |
78 | m_avatarService = (IAvatarService)m_userService; | 78 | m_avatarService = userServices; |
79 | |||
80 | } | 79 | } |
81 | |||
82 | } | 80 | } |
83 | } | 81 | } |
diff --git a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs index 126f42b..43cc16a 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs | |||
@@ -62,7 +62,8 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
62 | m_inventoryServices = null; | 62 | m_inventoryServices = null; |
63 | 63 | ||
64 | HGUserServices hgUserService = new HGUserServices(this, localUserService); | 64 | HGUserServices hgUserService = new HGUserServices(this, localUserService); |
65 | // This plugin arrangement could eventually be configurable rather than hardcoded here. | 65 | // This plugin arrangement could eventually be configurable rather than hardcoded here. |
66 | hgUserService.AddPlugin(new TemporaryUserProfilePlugin()); | ||
66 | hgUserService.AddPlugin(new OGS1UserDataPlugin(this)); | 67 | hgUserService.AddPlugin(new OGS1UserDataPlugin(this)); |
67 | 68 | ||
68 | m_userService = hgUserService; | 69 | m_userService = hgUserService; |