aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-01 19:33:41 +0100
committerJustin Clark-Casey (justincc)2010-07-01 19:33:41 +0100
commit81f727416d4e59a3fe4d9e3481a3cbba9af3de3f (patch)
tree2ef838360dc72e8266043be18c585625538703a6 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentstart storing a mediaurl on the scene object part (diff)
downloadopensim-SC_OLD-81f727416d4e59a3fe4d9e3481a3cbba9af3de3f.zip
opensim-SC_OLD-81f727416d4e59a3fe4d9e3481a3cbba9af3de3f.tar.gz
opensim-SC_OLD-81f727416d4e59a3fe4d9e3481a3cbba9af3de3f.tar.bz2
opensim-SC_OLD-81f727416d4e59a3fe4d9e3481a3cbba9af3de3f.tar.xz
start sending media url in object full updates
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index d2824bd..ddc963a 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4314,8 +4314,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4314 4314
4315 public void SendLandObjectOwners(LandData land, List<UUID> groups, Dictionary<UUID, int> ownersAndCount) 4315 public void SendLandObjectOwners(LandData land, List<UUID> groups, Dictionary<UUID, int> ownersAndCount)
4316 { 4316 {
4317
4318
4319 int notifyCount = ownersAndCount.Count; 4317 int notifyCount = ownersAndCount.Count;
4320 ParcelObjectOwnersReplyPacket pack = (ParcelObjectOwnersReplyPacket)PacketPool.Instance.GetPacket(PacketType.ParcelObjectOwnersReply); 4318 ParcelObjectOwnersReplyPacket pack = (ParcelObjectOwnersReplyPacket)PacketPool.Instance.GetPacket(PacketType.ParcelObjectOwnersReply);
4321 4319
@@ -4587,6 +4585,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4587 update.TextureEntry = data.Shape.TextureEntry ?? Utils.EmptyBytes; 4585 update.TextureEntry = data.Shape.TextureEntry ?? Utils.EmptyBytes;
4588 update.Scale = data.Shape.Scale; 4586 update.Scale = data.Shape.Scale;
4589 update.Text = Util.StringToBytes256(data.Text); 4587 update.Text = Util.StringToBytes256(data.Text);
4588 update.MediaURL = Util.StringToBytes256(data.MediaUrl);
4590 4589
4591 #region PrimFlags 4590 #region PrimFlags
4592 4591