aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs
diff options
context:
space:
mode:
authorMelanie2009-12-28 23:42:08 +0000
committerMelanie2009-12-28 23:42:08 +0000
commite0fc854f05b137c353196356e5b26d11b6ee6867 (patch)
tree9a1c0a29178a9f3e10b10f5e184f46bce1c61078 /OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs
parentAdd the second step of the friends migration to pull data from the old table ... (diff)
downloadopensim-SC_OLD-e0fc854f05b137c353196356e5b26d11b6ee6867.zip
opensim-SC_OLD-e0fc854f05b137c353196356e5b26d11b6ee6867.tar.gz
opensim-SC_OLD-e0fc854f05b137c353196356e5b26d11b6ee6867.tar.bz2
opensim-SC_OLD-e0fc854f05b137c353196356e5b26d11b6ee6867.tar.xz
Adding new fields and home location methid to presence. Adding cleanup
(deleting all but one presence record) on logout so that they don't pile up.
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs
index a80a355..644d755 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence/LocalPresenceServiceConnector.cs
@@ -180,6 +180,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Presence
180 return m_PresenceService.GetAgents(userIDs); 180 return m_PresenceService.GetAgents(userIDs);
181 } 181 }
182 182
183 public bool SetHomeLocation(string userID, UUID regionID, Vector3 position, Vector3 lookAt)
184 {
185 return m_PresenceService.SetHomeLocation(userID, regionID, position, lookAt);
186 }
187
183 #endregion 188 #endregion
184 189
185 } 190 }