diff options
author | Justin Clarke Casey | 2008-08-30 17:51:12 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-30 17:51:12 +0000 |
commit | 8f31c47f2fdf63d298a2af6e8602870d93fff2dd (patch) | |
tree | e4576d12aca34ce218990a6736f985c97d953b53 /OpenSim/Region/ClientStack/LindenUDP | |
parent | * Fixed #2807 Again, Whoops. (diff) | |
download | opensim-SC_OLD-8f31c47f2fdf63d298a2af6e8602870d93fff2dd.zip opensim-SC_OLD-8f31c47f2fdf63d298a2af6e8602870d93fff2dd.tar.gz opensim-SC_OLD-8f31c47f2fdf63d298a2af6e8602870d93fff2dd.tar.bz2 opensim-SC_OLD-8f31c47f2fdf63d298a2af6e8602870d93fff2dd.tar.xz |
* Apply patch in mantis 2083
* TimeStamp field of the AgentMovementCompletePacket in LLClientView.MoveAgentIntoRegion contained a fixed number. The attached patch changes this to a current
timestamp.
* Thanks HomerHorwitz
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 0a067d5..663344e 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -1014,7 +1014,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1014 | mov.AgentData.SessionID = m_sessionId; | 1014 | mov.AgentData.SessionID = m_sessionId; |
1015 | mov.AgentData.AgentID = AgentId; | 1015 | mov.AgentData.AgentID = AgentId; |
1016 | mov.Data.RegionHandle = regInfo.RegionHandle; | 1016 | mov.Data.RegionHandle = regInfo.RegionHandle; |
1017 | mov.Data.Timestamp = 1172750370; // TODO - dynamicalise this | 1017 | mov.Data.Timestamp = (uint)Util.UnixTimeSinceEpoch(); |
1018 | 1018 | ||
1019 | if ((pos.X == 0) && (pos.Y == 0) && (pos.Z == 0)) | 1019 | if ((pos.X == 0) && (pos.Y == 0) && (pos.Z == 0)) |
1020 | { | 1020 | { |