diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 1096eae..b904353 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -70,6 +70,7 @@ 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 string m_born; | ||
73 | public List<uint> SelectedObjects {get; private set;} | 74 | public List<uint> SelectedObjects {get; private set;} |
74 | 75 | ||
75 | public NPCAvatar( | 76 | public NPCAvatar( |
@@ -611,6 +612,12 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
611 | set { } | 612 | set { } |
612 | } | 613 | } |
613 | 614 | ||
615 | public string Born | ||
616 | { | ||
617 | get { return m_born; } | ||
618 | set { m_born = value; } | ||
619 | } | ||
620 | |||
614 | public bool IsGroupMember(UUID groupID) | 621 | public bool IsGroupMember(UUID groupID) |
615 | { | 622 | { |
616 | return (m_hostGroupID == groupID); | 623 | return (m_hostGroupID == groupID); |