forgot a .ToString() on AgentID

zircon^2
MW 2007-05-17 15:51:16 +00:00
parent 915b8962a3
commit 8378e72a9f
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ namespace OpenSim
SimParams["secure_session_id"] = this.SecureSessionID.ToString();
SimParams["firstname"] = this.ClientAvatar.firstname;
SimParams["lastname"] = this.ClientAvatar.lastname;
SimParams["agent_id"] = this.AgentID;
SimParams["agent_id"] = this.AgentID.ToString();
SimParams["circuit_code"] = (Int32)this.CircuitCode;
SimParams["child_agent"] = "1";
SendParams = new ArrayList();