aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-23 18:24:39 +0000
committerJustin Clarke Casey2009-04-23 18:24:39 +0000
commitef9d140022b57b175f41602731ec73775bdf2d9c (patch)
treed7a561e3ce85b3064b3f84b06d2e3f2fb4f4301e /OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs
parentfix up contributors list to have 3 contributors sections (diff)
downloadopensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.zip
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.gz
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.bz2
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.xz
* Add user data plugin to store temporary profiles (which are distinct from cached)
* Plugin not yet used * Existing functionality should not be affected in any way
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/Hypergrid/HGCommunicationsGridMode.cs10
1 files changed, 4 insertions, 6 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}