mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
BUG FIX: change lludp hovertext utf-8 cut point. Thx djphil
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user