diff options
author | UbitUmarov | 2016-12-07 20:34:11 +0000 |
---|---|---|
committer | UbitUmarov | 2016-12-07 20:34:11 +0000 |
commit | 55c04a24101792ac5060a2fa12c5cccf1fe392fb (patch) | |
tree | ec53ac0c8b6314c2049df2e7767ee08c581374f6 /OpenSim/Region/OptionalModules | |
parent | change a few ssl config comments (diff) | |
parent | add missing sp Intransit control (diff) | |
download | opensim-SC-55c04a24101792ac5060a2fa12c5cccf1fe392fb.zip opensim-SC-55c04a24101792ac5060a2fa12c5cccf1fe392fb.tar.gz opensim-SC-55c04a24101792ac5060a2fa12c5cccf1fe392fb.tar.bz2 opensim-SC-55c04a24101792ac5060a2fa12c5cccf1fe392fb.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 1ad71ba..1096eae 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -69,7 +69,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
69 | private readonly Scene m_scene; | 69 | private readonly Scene m_scene; |
70 | private readonly UUID m_ownerID; | 70 | private readonly UUID m_ownerID; |
71 | private UUID m_hostGroupID; | 71 | private UUID m_hostGroupID; |
72 | 72 | private string m_profileAbout = ""; | |
73 | public List<uint> SelectedObjects {get; private set;} | 73 | public List<uint> SelectedObjects {get; private set;} |
74 | 74 | ||
75 | public NPCAvatar( | 75 | public NPCAvatar( |
@@ -98,6 +98,17 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
98 | m_hostGroupID = UUID.Zero; | 98 | m_hostGroupID = UUID.Zero; |
99 | } | 99 | } |
100 | 100 | ||
101 | public string profileAbout | ||
102 | { | ||
103 | get { return m_profileAbout; } | ||
104 | set | ||
105 | { | ||
106 | if(value.Length > 255) | ||
107 | m_profileAbout = value.Substring(0,255); | ||
108 | else | ||
109 | m_profileAbout = value; | ||
110 | } | ||
111 | } | ||
101 | public IScene Scene | 112 | public IScene Scene |
102 | { | 113 | { |
103 | get { return m_scene; } | 114 | get { return m_scene; } |