mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Removed sessionID from GridUserservice again. Removed parcel crossing detection from Robust connector. Fixed Simian to continue to send those location updates upon parcel crossing, without changing the interface.
This commit is contained in:
@@ -156,7 +156,6 @@ namespace OpenSim.Server.Handlers.GridUser
|
||||
byte[] SetPosition(Dictionary<string, object> request)
|
||||
{
|
||||
string user = string.Empty;
|
||||
UUID sessionID = UUID.Zero;
|
||||
UUID region = UUID.Zero;
|
||||
Vector3 position = new Vector3(128, 128, 70);
|
||||
Vector3 look = Vector3.Zero;
|
||||
@@ -167,7 +166,7 @@ namespace OpenSim.Server.Handlers.GridUser
|
||||
if (!UnpackArgs(request, out user, out region, out position, out look))
|
||||
return FailureResult();
|
||||
|
||||
if (m_GridUserService.SetLastPosition(user, sessionID, region, position, look))
|
||||
if (m_GridUserService.SetLastPosition(user, region, position, look))
|
||||
return SuccessResult();
|
||||
|
||||
return FailureResult();
|
||||
|
||||
Reference in New Issue
Block a user