aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorUbitUmarov2014-08-19 09:18:29 +0100
committerUbitUmarov2014-08-19 09:18:29 +0100
commitb0253362c7f93543b50943f71485a3b3d9bcf2f2 (patch)
treeee805cae6530dd3af24acd2b05a5825101c49c09 /OpenSim/Region/Framework
parentfix the encoding of rotation in updates, not just using the next field to (diff)
downloadopensim-SC_OLD-b0253362c7f93543b50943f71485a3b3d9bcf2f2.zip
opensim-SC_OLD-b0253362c7f93543b50943f71485a3b3d9bcf2f2.tar.gz
opensim-SC_OLD-b0253362c7f93543b50943f71485a3b3d9bcf2f2.tar.bz2
opensim-SC_OLD-b0253362c7f93543b50943f71485a3b3d9bcf2f2.tar.xz
remove the silly sendTerseUpdates. I was fooled by wingridproxy not
decoding updates correctly
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index e3e8871..4f768bb 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -5514,7 +5514,6 @@ namespace OpenSim.Region.Framework.Scenes
5514 continue; 5514 continue;
5515 5515
5516 p.SendUpdateToAgent(this); 5516 p.SendUpdateToAgent(this);
5517 p.SendAgentTerseUpdate(this);
5518 p.SendAppearanceToAgent(this); 5517 p.SendAppearanceToAgent(this);
5519 if (p.Animator != null) 5518 if (p.Animator != null)
5520 p.Animator.SendAnimPackToClient(ControllingClient); 5519 p.Animator.SendAnimPackToClient(ControllingClient);
@@ -5830,7 +5829,6 @@ namespace OpenSim.Region.Framework.Scenes
5830 foreach (ScenePresence p in viewsToSendto) 5829 foreach (ScenePresence p in viewsToSendto)
5831 { 5830 {
5832 SendUpdateToAgent(p); 5831 SendUpdateToAgent(p);
5833 SendAgentTerseUpdate(p);
5834 SendAppearanceToAgent(p); 5832 SendAppearanceToAgent(p);
5835 if (Animator != null) 5833 if (Animator != null)
5836 Animator.SendAnimPackToClient(p.ControllingClient); 5834 Animator.SendAnimPackToClient(p.ControllingClient);
@@ -5847,7 +5845,6 @@ namespace OpenSim.Region.Framework.Scenes
5847// m_log.Debug("[AVATAR]: viewMe: " + Lastname + "<-" + p.Lastname); 5845// m_log.Debug("[AVATAR]: viewMe: " + Lastname + "<-" + p.Lastname);
5848 5846
5849 p.SendUpdateToAgent(this); 5847 p.SendUpdateToAgent(this);
5850 p.SendAgentTerseUpdate(this);
5851 p.SendAppearanceToAgent(this); 5848 p.SendAppearanceToAgent(this);
5852 if (p.Animator != null) 5849 if (p.Animator != null)
5853 p.Animator.SendAnimPackToClient(ControllingClient); 5850 p.Animator.SendAnimPackToClient(ControllingClient);