mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
*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
This commit is contained in:
@@ -186,9 +186,9 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
|
||||
}
|
||||
|
||||
if (listeners.ContainsKey((ulong)requestData["regionhandle"]))
|
||||
if (listeners.ContainsKey(Convert.ToUInt64((string)requestData["regionhandle"])))
|
||||
{
|
||||
this.listeners[(ulong)requestData["regionhandle"]].TriggerExpectUser((ulong)requestData["regionhandle"], agentData);
|
||||
this.listeners[Convert.ToUInt64((string)requestData["regionhandle"])].TriggerExpectUser(Convert.ToUInt64((string)requestData["regionhandle"]), agentData);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user