* 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
This commit is contained in:
Justin Clarke Casey
2008-08-30 17:51:12 +00:00
parent 72b0a53ada
commit 8f31c47f2f

View File

@@ -1014,7 +1014,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
mov.AgentData.SessionID = m_sessionId;
mov.AgentData.AgentID = AgentId;
mov.Data.RegionHandle = regInfo.RegionHandle;
mov.Data.Timestamp = 1172750370; // TODO - dynamicalise this
mov.Data.Timestamp = (uint)Util.UnixTimeSinceEpoch();
if ((pos.X == 0) && (pos.Y == 0) && (pos.Z == 0))
{