diff options
author | UbitUmarov | 2014-08-19 09:18:29 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-19 09:18:29 +0100 |
commit | b0253362c7f93543b50943f71485a3b3d9bcf2f2 (patch) | |
tree | ee805cae6530dd3af24acd2b05a5825101c49c09 /OpenSim | |
parent | fix the encoding of rotation in updates, not just using the next field to (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 3 |
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); |