diff options
author | Diva Canto | 2010-05-20 15:14:14 -0700 |
---|---|---|
committer | Diva Canto | 2010-05-20 15:14:14 -0700 |
commit | 13c22015e588284df1b74b7f5edad0df97ca3d3c (patch) | |
tree | a9932ddb546f314c5835e14f8619e5a20b9e4388 /OpenSim/Server | |
parent | Merging slimupdates2 (diff) | |
download | opensim-SC_OLD-13c22015e588284df1b74b7f5edad0df97ca3d3c.zip opensim-SC_OLD-13c22015e588284df1b74b7f5edad0df97ca3d3c.tar.gz opensim-SC_OLD-13c22015e588284df1b74b7f5edad0df97ca3d3c.tar.bz2 opensim-SC_OLD-13c22015e588284df1b74b7f5edad0df97ca3d3c.tar.xz |
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.
Diffstat (limited to 'OpenSim/Server')
-rw-r--r-- | OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs b/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs index b1e7eac..f8fa429 100644 --- a/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs +++ b/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs | |||
@@ -156,7 +156,6 @@ namespace OpenSim.Server.Handlers.GridUser | |||
156 | byte[] SetPosition(Dictionary<string, object> request) | 156 | byte[] SetPosition(Dictionary<string, object> request) |
157 | { | 157 | { |
158 | string user = string.Empty; | 158 | string user = string.Empty; |
159 | UUID sessionID = UUID.Zero; | ||
160 | UUID region = UUID.Zero; | 159 | UUID region = UUID.Zero; |
161 | Vector3 position = new Vector3(128, 128, 70); | 160 | Vector3 position = new Vector3(128, 128, 70); |
162 | Vector3 look = Vector3.Zero; | 161 | Vector3 look = Vector3.Zero; |
@@ -167,7 +166,7 @@ namespace OpenSim.Server.Handlers.GridUser | |||
167 | if (!UnpackArgs(request, out user, out region, out position, out look)) | 166 | if (!UnpackArgs(request, out user, out region, out position, out look)) |
168 | return FailureResult(); | 167 | return FailureResult(); |
169 | 168 | ||
170 | if (m_GridUserService.SetLastPosition(user, sessionID, region, position, look)) | 169 | if (m_GridUserService.SetLastPosition(user, region, position, look)) |
171 | return SuccessResult(); | 170 | return SuccessResult(); |
172 | 171 | ||
173 | return FailureResult(); | 172 | return FailureResult(); |