BUG FIX: change lludp hovertext utf-8 cut point. Thx djphil

This commit is contained in:
UbitUmarov
2017-06-28 01:29:49 +01:00
parent 936aee412d
commit b0a0163253
3 changed files with 9 additions and 9 deletions

View File

@@ -1103,8 +1103,8 @@ namespace OpenSim.Region.Framework.Scenes
{
get
{
if (m_text.Length > 255)
return m_text.Substring(0, 254);
if (m_text.Length > 256) // yes > 254
return m_text.Substring(0, 256);
return m_text;
}
set { m_text = value; }
@@ -1379,7 +1379,8 @@ namespace OpenSim.Region.Framework.Scenes
public UUID LastOwnerID
{
get { return _lastOwnerID; }
set { _lastOwnerID = value; }
set {
_lastOwnerID = value; }
}
public UUID RezzerID