* 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 HomerHorwitz0.6.0-stable
parent
72b0a53ada
commit
8f31c47f2f
|
@ -1014,7 +1014,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
mov.AgentData.SessionID = m_sessionId;
|
mov.AgentData.SessionID = m_sessionId;
|
||||||
mov.AgentData.AgentID = AgentId;
|
mov.AgentData.AgentID = AgentId;
|
||||||
mov.Data.RegionHandle = regInfo.RegionHandle;
|
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))
|
if ((pos.X == 0) && (pos.Y == 0) && (pos.Z == 0))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue