diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 5 |
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 | ||