diff options
author | UbitUmarov | 2017-06-28 01:29:49 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-28 01:29:49 +0100 |
commit | b0a0163253e14514289578d31e83ce0afe9b91a3 (patch) | |
tree | ae4bbddcb7da26282fc29251213163e8e712d558 /OpenSim/Region/Framework | |
parent | remove osGetAgentIP() this was not a good idea to have :( (diff) | |
download | opensim-SC_OLD-b0a0163253e14514289578d31e83ce0afe9b91a3.zip opensim-SC_OLD-b0a0163253e14514289578d31e83ce0afe9b91a3.tar.gz opensim-SC_OLD-b0a0163253e14514289578d31e83ce0afe9b91a3.tar.bz2 opensim-SC_OLD-b0a0163253e14514289578d31e83ce0afe9b91a3.tar.xz |
BUG FIX: change lludp hovertext utf-8 cut point. Thx djphil
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 7 |
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 |