aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorUbitUmarov2017-06-28 01:29:49 +0100
committerUbitUmarov2017-06-28 01:29:49 +0100
commitb0a0163253e14514289578d31e83ce0afe9b91a3 (patch)
treeae4bbddcb7da26282fc29251213163e8e712d558 /OpenSim/Region/ClientStack/Linden
parentremove osGetAgentIP() this was not a good idea to have :( (diff)
downloadopensim-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/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 01c1fb9..b3e68ec 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -5753,7 +5753,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5753 //update.JointPivot = Vector3.Zero; 5753 //update.JointPivot = Vector3.Zero;
5754 //update.JointType = 0; 5754 //update.JointType = 0;
5755 update.Material = part.Material; 5755 update.Material = part.Material;
5756 update.MediaURL = Utils.EmptyBytes; // FIXME: Support this in OpenSim
5757/* 5756/*
5758 if (data.ParentGroup.IsAttachment) 5757 if (data.ParentGroup.IsAttachment)
5759 { 5758 {
@@ -5832,8 +5831,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5832 update.TextureAnim = part.TextureAnimation ?? Utils.EmptyBytes; 5831 update.TextureAnim = part.TextureAnimation ?? Utils.EmptyBytes;
5833 update.TextureEntry = part.Shape.TextureEntry ?? Utils.EmptyBytes; 5832 update.TextureEntry = part.Shape.TextureEntry ?? Utils.EmptyBytes;
5834 update.Scale = part.Shape.Scale; 5833 update.Scale = part.Shape.Scale;
5835 update.Text = Util.StringToBytes256(part.Text); 5834 update.Text = Util.StringToBytes(part.Text, 255);
5836 update.MediaURL = Util.StringToBytes256(part.MediaUrl); 5835 update.MediaURL = Util.StringToBytes(part.MediaUrl, 255);
5837 5836
5838 #region PrimFlags 5837 #region PrimFlags
5839 5838