diff options
author | MW | 2007-05-17 15:51:16 +0000 |
---|---|---|
committer | MW | 2007-05-17 15:51:16 +0000 |
commit | 8378e72a9f00ac367b5f6529063d1c9c99e98a6a (patch) | |
tree | 1ee1f9cf1fd6616058f1fd7ebbf9e0a2f006ee7b /OpenSim.RegionServer/SimClient.Grid.cs | |
parent | Hopefully everything is working again (diff) | |
download | opensim-SC_OLD-8378e72a9f00ac367b5f6529063d1c9c99e98a6a.zip opensim-SC_OLD-8378e72a9f00ac367b5f6529063d1c9c99e98a6a.tar.gz opensim-SC_OLD-8378e72a9f00ac367b5f6529063d1c9c99e98a6a.tar.bz2 opensim-SC_OLD-8378e72a9f00ac367b5f6529063d1c9c99e98a6a.tar.xz |
forgot a .ToString() on AgentID
Diffstat (limited to 'OpenSim.RegionServer/SimClient.Grid.cs')
-rw-r--r-- | OpenSim.RegionServer/SimClient.Grid.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/SimClient.Grid.cs b/OpenSim.RegionServer/SimClient.Grid.cs index 2f3be0e..79ed5aa 100644 --- a/OpenSim.RegionServer/SimClient.Grid.cs +++ b/OpenSim.RegionServer/SimClient.Grid.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim | |||
47 | SimParams["secure_session_id"] = this.SecureSessionID.ToString(); | 47 | SimParams["secure_session_id"] = this.SecureSessionID.ToString(); |
48 | SimParams["firstname"] = this.ClientAvatar.firstname; | 48 | SimParams["firstname"] = this.ClientAvatar.firstname; |
49 | SimParams["lastname"] = this.ClientAvatar.lastname; | 49 | SimParams["lastname"] = this.ClientAvatar.lastname; |
50 | SimParams["agent_id"] = this.AgentID; | 50 | SimParams["agent_id"] = this.AgentID.ToString(); |
51 | SimParams["circuit_code"] = (Int32)this.CircuitCode; | 51 | SimParams["circuit_code"] = (Int32)this.CircuitCode; |
52 | SimParams["child_agent"] = "1"; | 52 | SimParams["child_agent"] = "1"; |
53 | SendParams = new ArrayList(); | 53 | SendParams = new ArrayList(); |