diff options
author | Diva Canto | 2011-01-04 11:33:15 -0800 |
---|---|---|
committer | Diva Canto | 2011-01-04 11:33:15 -0800 |
commit | fbde9b1136e831542869e42995466dc5df101ee5 (patch) | |
tree | 939358cc9512d608283e932b9db0853fa1a0314c /OpenSim | |
parent | Guard against null Animator. (diff) | |
download | opensim-SC_OLD-fbde9b1136e831542869e42995466dc5df101ee5.zip opensim-SC_OLD-fbde9b1136e831542869e42995466dc5df101ee5.tar.gz opensim-SC_OLD-fbde9b1136e831542869e42995466dc5df101ee5.tar.bz2 opensim-SC_OLD-fbde9b1136e831542869e42995466dc5df101ee5.tar.xz |
Note to self: try to make only 3 things at the same time.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 0648c58..3a40196 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2499,7 +2499,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2499 | // m_log.WarnFormat("[SP] Send avatar data from {0} to {1}",m_uuid,avatar.ControllingClient.AgentId); | 2499 | // m_log.WarnFormat("[SP] Send avatar data from {0} to {1}",m_uuid,avatar.ControllingClient.AgentId); |
2500 | 2500 | ||
2501 | avatar.ControllingClient.SendAvatarDataImmediate(this); | 2501 | avatar.ControllingClient.SendAvatarDataImmediate(this); |
2502 | if (Animation != null) | 2502 | if (Animator != null) |
2503 | Animator.SendAnimPackToClient(avatar.ControllingClient); | 2503 | Animator.SendAnimPackToClient(avatar.ControllingClient); |
2504 | } | 2504 | } |
2505 | 2505 | ||