aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Controller.cs
diff options
context:
space:
mode:
authorjmalthus2007-02-14 02:36:25 +0000
committerjmalthus2007-02-14 02:36:25 +0000
commit726b91d74d5644afe9aeefa1dfa91be87316bdb7 (patch)
tree5e91f7d0765c1daa5fd8f05d11242afba81d8675 /Controller.cs
parent[0000050] Animations stop/start issue fixed (diff)
downloadopensim-SC_OLD-726b91d74d5644afe9aeefa1dfa91be87316bdb7.zip
opensim-SC_OLD-726b91d74d5644afe9aeefa1dfa91be87316bdb7.tar.gz
opensim-SC_OLD-726b91d74d5644afe9aeefa1dfa91be87316bdb7.tar.bz2
opensim-SC_OLD-726b91d74d5644afe9aeefa1dfa91be87316bdb7.tar.xz
Patch Applied regarding Bug #51
Diffstat (limited to 'Controller.cs')
-rw-r--r--Controller.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Controller.cs b/Controller.cs
index 1c3b891..d0a17cf 100644
--- a/Controller.cs
+++ b/Controller.cs
@@ -232,6 +232,11 @@ namespace OpenSim
232 AgentUpdatePacket agent = (AgentUpdatePacket)pack; 232 AgentUpdatePacket agent = (AgentUpdatePacket)pack;
233 uint mask = agent.AgentData.ControlFlags & (1); 233 uint mask = agent.AgentData.ControlFlags & (1);
234 AvatarData avatar = _agentManager.GetAgent(userInfo.AgentID); 234 AvatarData avatar = _agentManager.GetAgent(userInfo.AgentID);
235 avatar.CameraAtAxis = agent.AgentData.CameraAtAxis;
236 avatar.CameraUpAxis = agent.AgentData.CameraUpAxis;
237 avatar.CameraCenter = agent.AgentData.CameraCenter;
238 avatar.far = agent.AgentData.Far;
239
235 if (avatar != null) 240 if (avatar != null)
236 { 241 {
237 if (avatar.Started) 242 if (avatar.Started)