diff options
Diffstat (limited to 'OpenSim/Grid/MessagingServer/UserPresenceData.cs')
-rw-r--r-- | OpenSim/Grid/MessagingServer/UserPresenceData.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Grid/MessagingServer/UserPresenceData.cs b/OpenSim/Grid/MessagingServer/UserPresenceData.cs index 1391460..fdc5d10 100644 --- a/OpenSim/Grid/MessagingServer/UserPresenceData.cs +++ b/OpenSim/Grid/MessagingServer/UserPresenceData.cs | |||
@@ -30,13 +30,16 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using libsecondlife; | 31 | using libsecondlife; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Data; | ||
34 | |||
33 | 35 | ||
34 | namespace OpenSim.Grid.MessagingServer | 36 | namespace OpenSim.Grid.MessagingServer |
35 | { | 37 | { |
36 | public class UserPresenceData | 38 | public class UserPresenceData |
37 | { | 39 | { |
38 | public AgentCircuitData agentData = new AgentCircuitData(); | 40 | public AgentCircuitData agentData = new AgentCircuitData(); |
39 | public RegionInfo regionData = new RegionInfo(); | 41 | public RegionProfileData regionData = new RegionProfileData(); |
42 | public string httpURI = ""; | ||
40 | public List<FriendListItem> friendData = new List<FriendListItem> (); | 43 | public List<FriendListItem> friendData = new List<FriendListItem> (); |
41 | public List<LLUUID> subscriptionData = new List<LLUUID>(); | 44 | public List<LLUUID> subscriptionData = new List<LLUUID>(); |
42 | 45 | ||