* Fix a missing .UUID in llInstantMessage

0.6.0-stable
Teravus Ovares 2008-09-12 18:17:01 +00:00
parent 9349cf3149
commit 18f490a30c
1 changed files with 1 additions and 1 deletions

View File

@ -2507,7 +2507,7 @@ namespace OpenSim.Region.ScriptEngine.Common
//m_pendingFriendRequests.Add(friendTransactionID, fromAgentID);
GridInstantMessage msg = new GridInstantMessage();
msg.fromAgentID = new Guid(m_host.ToString()); // fromAgentID.Guid;
msg.fromAgentID = new Guid(m_host.UUID.ToString()); // fromAgentID.Guid;
msg.fromAgentSession = new Guid(friendTransactionID.ToString());// fromAgentSession.UUID;
msg.toAgentID = new Guid(user); // toAgentID.Guid;
msg.imSessionID = new Guid(friendTransactionID.ToString()); // This is the item we're mucking with here