diff options
author | mingchen | 2007-07-05 20:46:37 +0000 |
---|---|---|
committer | mingchen | 2007-07-05 20:46:37 +0000 |
commit | e2bafc8d6c37d48c7af6a30c28696adb145d3f00 (patch) | |
tree | 4500b15f9188b42e7711dbe6a22ac33712e7a876 /OpenSim | |
parent | Fixed rotation editing of individual prims in a group. I think positioning an... (diff) | |
download | opensim-SC_OLD-e2bafc8d6c37d48c7af6a30c28696adb145d3f00.zip opensim-SC_OLD-e2bafc8d6c37d48c7af6a30c28696adb145d3f00.tar.gz opensim-SC_OLD-e2bafc8d6c37d48c7af6a30c28696adb145d3f00.tar.bz2 opensim-SC_OLD-e2bafc8d6c37d48c7af6a30c28696adb145d3f00.tar.xz |
*Fixed crash of OpenSim client when in grid mode from a recent commit
*The XML issue is now fixed (yay lbsa71) -- but I am still getting a "login packet never received", but that is probably an issue on my end, and not it the code
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index e8ed7f4..4d93cc9 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -186,9 +186,9 @@ namespace OpenSim.Region.Communications.OGS1 | |||
186 | 186 | ||
187 | } | 187 | } |
188 | 188 | ||
189 | if (listeners.ContainsKey((ulong)requestData["regionhandle"])) | 189 | if (listeners.ContainsKey(Convert.ToUInt64((string)requestData["regionhandle"]))) |
190 | { | 190 | { |
191 | this.listeners[(ulong)requestData["regionhandle"]].TriggerExpectUser((ulong)requestData["regionhandle"], agentData); | 191 | this.listeners[Convert.ToUInt64((string)requestData["regionhandle"])].TriggerExpectUser(Convert.ToUInt64((string)requestData["regionhandle"]), agentData); |
192 | } | 192 | } |
193 | else | 193 | else |
194 | { | 194 | { |