diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 1096eae..0cabe47 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -70,6 +70,8 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
70 | private readonly UUID m_ownerID; | 70 | private readonly UUID m_ownerID; |
71 | private UUID m_hostGroupID; | 71 | private UUID m_hostGroupID; |
72 | private string m_profileAbout = ""; | 72 | private string m_profileAbout = ""; |
73 | private UUID m_profileImage = UUID.Zero; | ||
74 | private string m_born; | ||
73 | public List<uint> SelectedObjects {get; private set;} | 75 | public List<uint> SelectedObjects {get; private set;} |
74 | 76 | ||
75 | public NPCAvatar( | 77 | public NPCAvatar( |
@@ -109,6 +111,13 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
109 | m_profileAbout = value; | 111 | m_profileAbout = value; |
110 | } | 112 | } |
111 | } | 113 | } |
114 | |||
115 | public UUID profileImage | ||
116 | { | ||
117 | get { return m_profileImage; } | ||
118 | set { m_profileImage = value; } | ||
119 | } | ||
120 | |||
112 | public IScene Scene | 121 | public IScene Scene |
113 | { | 122 | { |
114 | get { return m_scene; } | 123 | get { return m_scene; } |
@@ -611,6 +620,12 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
611 | set { } | 620 | set { } |
612 | } | 621 | } |
613 | 622 | ||
623 | public string Born | ||
624 | { | ||
625 | get { return m_born; } | ||
626 | set { m_born = value; } | ||
627 | } | ||
628 | |||
614 | public bool IsGroupMember(UUID groupID) | 629 | public bool IsGroupMember(UUID groupID) |
615 | { | 630 | { |
616 | return (m_hostGroupID == groupID); | 631 | return (m_hostGroupID == groupID); |
@@ -974,7 +989,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
974 | { | 989 | { |
975 | } | 990 | } |
976 | 991 | ||
977 | public void SendAvatarProperties(UUID avatarID, string aboutText, string bornOn, Byte[] charterMember, | 992 | public void SendAvatarProperties(UUID avatarID, string aboutText, string bornOn, Byte[] membershipType, |
978 | string flAbout, uint flags, UUID flImageID, UUID imageID, string profileURL, | 993 | string flAbout, uint flags, UUID flImageID, UUID imageID, string profileURL, |
979 | UUID partnerID) | 994 | UUID partnerID) |
980 | { | 995 | { |