aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index c2eac24..f9699b1 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -1103,8 +1103,8 @@ namespace OpenSim.Region.Framework.Scenes
1103 { 1103 {
1104 get 1104 get
1105 { 1105 {
1106 if (m_text.Length > 255) 1106 if (m_text.Length > 256) // yes > 254
1107 return m_text.Substring(0, 254); 1107 return m_text.Substring(0, 256);
1108 return m_text; 1108 return m_text;
1109 } 1109 }
1110 set { m_text = value; } 1110 set { m_text = value; }
@@ -1379,7 +1379,8 @@ namespace OpenSim.Region.Framework.Scenes
1379 public UUID LastOwnerID 1379 public UUID LastOwnerID
1380 { 1380 {
1381 get { return _lastOwnerID; } 1381 get { return _lastOwnerID; }
1382 set { _lastOwnerID = value; } 1382 set {
1383 _lastOwnerID = value; }
1383 } 1384 }
1384 1385
1385 public UUID RezzerID 1386 public UUID RezzerID